mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
13 lines
439 B
TypeScript
13 lines
439 B
TypeScript
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'),
|
|
});
|