summaryrefslogtreecommitdiff
path: root/frontend/app/assets/icons.js
blob: 59871f87965b7138825cd57660046762864982c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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),
};