Rev 1657 | Rev 2152 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'import Recommend from '@mui/icons-material/Recommend'import {EmojiEmotions,Favorite,Tungsten,VolunteerActivism} from '@mui/icons-material'export const REEL_SIZES = {sm: 'sm',md: 'md',lg: 'lg'}export const REACTIONS = [{type: 'r',icon: <Recommend style={{ color: '#7405f9' }} />},{type: 's',icon: <VolunteerActivism style={{ color: '#6495ED' }} />},{type: 'l',icon: <Favorite style={{ color: '#DF704D' }} />},{type: 'i',icon: <Tungsten style={{ color: '#F5BB5C', transform: 'rotate(180deg)' }} />},{type: 'f',icon: <EmojiEmotions style={{ color: '#FF7F50' }} />}]