Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2134 Rev 2152
Línea 1... Línea -...
1
import React from 'react'
-
 
2
import Recommend from '@mui/icons-material/Recommend'
-
 
3
import {
1
import {
-
 
2
  Recommend,
4
  EmojiEmotions,
3
  EmojiEmotions,
5
  Favorite,
4
  Favorite,
6
  Tungsten,
5
  Tungsten,
7
  VolunteerActivism
6
  VolunteerActivism
8
} from '@mui/icons-material'
7
} from '@mui/icons-material'
Línea 14... Línea 13...
14
}
13
}
Línea 15... Línea 14...
15
 
14
 
16
export const REACTIONS = [
15
export const REACTIONS = [
17
  {
16
  {
-
 
17
    type: 'r',
18
    type: 'r',
18
    icon: Recommend,
-
 
19
    color: '#7405f9',
19
    icon: <Recommend style={{ color: '#7405f9' }} />
20
    label: 'Me gusta'
20
  },
21
  },
21
  {
22
  {
22
    type: 's',
23
    type: 's',
-
 
24
    icon: VolunteerActivism,
-
 
25
    color: '#6495ED',
23
    icon: <VolunteerActivism style={{ color: '#6495ED' }} />
26
    label: 'Dar apoyo'
24
  },
27
  },
25
  {
28
  {
-
 
29
    type: 'l',
26
    type: 'l',
30
    icon: Favorite,
-
 
31
    color: '#DF704D',
27
    icon: <Favorite style={{ color: '#DF704D' }} />
32
    label: 'Me encanta'
28
  },
33
  },
29
  {
34
  {
-
 
35
    type: 'i',
30
    type: 'i',
36
    icon: Tungsten,
-
 
37
    color: '#F5BB5C',
31
    icon: <Tungsten style={{ color: '#F5BB5C', transform: 'rotate(180deg)' }} />
38
    label: 'Me interesa'
32
  },
39
  },
33
  {
40
  {
34
    type: 'f',
41
    type: 'f',
-
 
42
    icon: EmojiEmotions,
-
 
43
    color: '#FF7F50',
35
    icon: <EmojiEmotions style={{ color: '#FF7F50' }} />
44
    label: 'Me divierte'
36
  }
45
  }