Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2162 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3719 stevensc 1
import {
2
  TipsAndUpdates,
3
  Recommend,
4
  EmojiEmotions,
5
  Favorite,
6
  VolunteerActivism
7
} from '@mui/icons-material';
8
 
9
export const REEL_SIZES = {
10
  sm: 'sm',
11
  md: 'md',
12
  lg: 'lg'
13
};
14
 
15
export const REACTIONS = [
16
  {
17
    type: 'r',
18
    icon: Recommend,
19
    color: '#7405f9',
20
    label: 'Me gusta'
21
  },
22
  {
23
    type: 's',
24
    icon: VolunteerActivism,
25
    color: '#6495ED',
26
    label: 'Dar apoyo'
27
  },
28
  {
29
    type: 'l',
30
    icon: Favorite,
31
    color: '#DF704D',
32
    label: 'Me encanta'
33
  },
34
  {
35
    type: 'i',
36
    icon: TipsAndUpdates,
37
    color: '#F5BB5C',
38
    label: 'Me interesa'
39
  },
40
  {
41
    type: 'f',
42
    icon: EmojiEmotions,
43
    color: '#FF7F50',
44
    label: 'Me divierte'
45
  }
46
];