mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
14 lines
520 B
TypeScript
14 lines
520 B
TypeScript
import { MoodSmile } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.emoji-picker.title'),
|
|
path: '/emoji-picker',
|
|
description: translate('tools.emoji-picker.description'),
|
|
keywords: ['emoji', 'picker', 'unicode', 'copy', 'paste'],
|
|
component: () => import('./emoji-picker.vue'),
|
|
icon: MoodSmile,
|
|
createdAt: new Date('2023-08-07'),
|
|
npmPackages: ['unicode-emoji-json', 'emojilib'],
|
|
});
|