verdnatura-chat/app/containers/EmojiPicker/categories.ts

60 lines
727 B
TypeScript

import { TIconsName } from '../CustomIcon';
export type IEmojiCategory =
| 'frequentlyUsed'
| 'custom'
| 'people'
| 'nature'
| 'food'
| 'activity'
| 'travel'
| 'objects'
| 'symbols'
| 'flags';
const tabs: {
key: TIconsName;
title: IEmojiCategory;
}[] = [
{
key: 'clock',
title: 'frequentlyUsed'
},
{
key: 'rocket',
title: 'custom'
},
{
key: 'emoji',
title: 'people'
},
{
key: 'leaf',
title: 'nature'
},
{
key: 'burger',
title: 'food'
},
{
key: 'basketball',
title: 'activity'
},
{
key: 'airplane',
title: 'travel'
},
{
key: 'lamp-bulb',
title: 'objects'
},
{
key: 'percentage',
title: 'symbols'
},
{
key: 'flag',
title: 'flags'
}
];
export default tabs;