mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 01:06:15 -04: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'),
|
||
|
});
|