Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2162 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

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