mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-17 09:46:02 +00:00
16 lines
443 B
TypeScript
16 lines
443 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
i18n: {
|
|
name: 'string:unicode.title',
|
|
description: 'string:unicode.description',
|
|
shortDescription: 'string:unicode.shortDescription',
|
|
longDescription: 'string:unicode.longDescription'
|
|
},
|
|
path: 'unicode',
|
|
icon: 'mdi:unicode',
|
|
keywords: ['unicode'],
|
|
component: lazy(() => import('./index'))
|
|
});
|