mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-24 08:29:32 +02:00
16 lines
438 B
TypeScript
16 lines
438 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'to-morse',
|
|
icon: 'arcticons:morse',
|
|
keywords: ['to', 'morse'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:toMorse.title',
|
|
description: 'string:toMorse.description',
|
|
shortDescription: 'string:toMorse.shortDescription'
|
|
}
|
|
});
|