mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
13 lines
457 B
TypeScript
13 lines
457 B
TypeScript
import { TextWrap } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.text-to-unicode.title'),
|
|
path: '/text-to-unicode',
|
|
description: translate('tools.text-to-unicode.description'),
|
|
keywords: ['text', 'to', 'unicode'],
|
|
component: () => import('./text-to-unicode.vue'),
|
|
icon: TextWrap,
|
|
createdAt: new Date('2024-01-31'),
|
|
});
|