Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1657 | Rev 2152 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1657 stevensc 1
import React from 'react'
2
import Recommend from '@mui/icons-material/Recommend'
3
import {
4
  EmojiEmotions,
5
  Favorite,
6
  Tungsten,
7
  VolunteerActivism
8
} from '@mui/icons-material'
9
 
1288 stevensc 10
export const REEL_SIZES = {
11
  sm: 'sm',
12
  md: 'md',
13
  lg: 'lg'
14
}
1657 stevensc 15
 
2134 stevensc 16
export const REACTIONS = [
1657 stevensc 17
  {
18
    type: 'r',
19
    icon: <Recommend style={{ color: '#7405f9' }} />
20
  },
21
  {
22
    type: 's',
23
    icon: <VolunteerActivism style={{ color: '#6495ED' }} />
24
  },
25
  {
26
    type: 'l',
27
    icon: <Favorite style={{ color: '#DF704D' }} />
28
  },
29
  {
30
    type: 'i',
31
    icon: <Tungsten style={{ color: '#F5BB5C', transform: 'rotate(180deg)' }} />
32
  },
33
  {
34
    type: 'f',
35
    icon: <EmojiEmotions style={{ color: '#FF7F50' }} />
36
  }
37
]