it-tools/src/tools/emoji-picker/index.ts

13 lines
439 B
TypeScript
Raw Normal View History

2023-08-08 09:19:43 +02:00
import { MoodSmile } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Emoji picker',
path: '/emoji-picker',
description: 'Copy and paste emojis easily and get the unicode and code points value of each emoji.',
keywords: ['emoji', 'picker', 'unicode', 'copy', 'paste'],
component: () => import('./emoji-picker.vue'),
icon: MoodSmile,
createdAt: new Date('2023-08-07'),
});