Rocket.Chat.ReactNative/app/lib/constants/emojis/categories.ts

45 lines
680 B
TypeScript

const list = ['frequentlyUsed', 'custom', 'people', 'nature', 'food', 'activity', 'travel', 'objects', 'symbols', 'flags'];
const tabs = [
{
tabLabel: 'clock',
category: list[0]
},
{
tabLabel: 'rocket',
category: list[1]
},
{
tabLabel: 'emoji',
category: list[2]
},
{
tabLabel: 'leaf',
category: list[3]
},
{
tabLabel: 'burger',
category: list[4]
},
{
tabLabel: 'basketball',
category: list[5]
},
{
tabLabel: 'airplane',
category: list[6]
},
{
tabLabel: 'lamp-bulb',
category: list[7]
},
{
tabLabel: 'percentage',
category: list[8]
},
{
tabLabel: 'flag',
category: list[9]
}
];
export const categories = { list, tabs };