Rev 2162 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
import {
TipsAndUpdates,
Recommend,
EmojiEmotions,
Favorite,
VolunteerActivism
} from '@mui/icons-material';
export const REEL_SIZES = {
sm: 'sm',
md: 'md',
lg: 'lg'
};
export const REACTIONS = [
{
type: 'r',
icon: Recommend,
color: '#7405f9',
label: 'Me gusta'
},
{
type: 's',
icon: VolunteerActivism,
color: '#6495ED',
label: 'Dar apoyo'
},
{
type: 'l',
icon: Favorite,
color: '#DF704D',
label: 'Me encanta'
},
{
type: 'i',
icon: TipsAndUpdates,
color: '#F5BB5C',
label: 'Me interesa'
},
{
type: 'f',
icon: EmojiEmotions,
color: '#FF7F50',
label: 'Me divierte'
}
];