diff options
Diffstat (limited to 'frontend/app/assets/icons.js')
| -rw-r--r-- | frontend/app/assets/icons.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/frontend/app/assets/icons.js b/frontend/app/assets/icons.js new file mode 100644 index 0000000..59871f8 --- /dev/null +++ b/frontend/app/assets/icons.js @@ -0,0 +1,30 @@ +export const FontIcons = { + login: '', + navigation: '', + article: '', + profile: '', + mail: '', + dashboard: '', + mobile: '', + other: '', + theme: '', + card: '', + addToCardForm: '', +}; + +export const FontAwesome = { + heart: String.fromCharCode(61444), + comment: String.fromCharCode(61669), + user: String.fromCharCode(62144), + twitter: String.fromCharCode(61593), + google: String.fromCharCode(61856), + facebook: String.fromCharCode(61594), + plus: String.fromCharCode(61543), + search: String.fromCharCode(61442), + smile: String.fromCharCode(61720), + chevronRight: String.fromCharCode(61524), + chevronLeft: String.fromCharCode(61700), + bars: String.fromCharCode(61641), + slashEye: String.fromCharCode(61552), + github: String.fromCharCode(61595), +}; |