diff options
| author | Andrew <saintruler@gmail.com> | 2019-03-11 21:00:02 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2019-03-11 21:00:02 +0400 |
| commit | 7e7dd5244e8d26485ad7950a89c04c98c4fef83f (patch) | |
| tree | 810730c4650392080fb87a78d3b527201e89fe4b /frontend/app/assets/icons.js | |
Initial commit/
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), +}; |