Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1288 | Rev 2134 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1288 Rev 1657
Línea -... Línea 1...
-
 
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
 
1
export const REEL_SIZES = {
10
export const REEL_SIZES = {
2
  sm: 'sm',
11
  sm: 'sm',
3
  md: 'md',
12
  md: 'md',
4
  lg: 'lg'
13
  lg: 'lg'
5
}
14
}
-
 
15
 
-
 
16
export const reactionsOptions = [
-
 
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
]