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