mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
15 lines
618 B
TypeScript
15 lines
618 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
||
import { lazy } from 'react';
|
||
// import image from '@assets/text.png';
|
||
|
||
export const tool = defineTool('string', {
|
||
name: 'String To morse',
|
||
path: 'to-morse',
|
||
icon: 'arcticons:morse',
|
||
description:
|
||
"World's simplest browser-based utility for converting text to Morse code. Load your text in the input form on the left and you'll instantly get Morse code in the output area. Powerful, free, and fast. Load text – get Morse code.",
|
||
shortDescription: 'Quickly encode text to morse',
|
||
keywords: ['to', 'morse'],
|
||
component: lazy(() => import('./index'))
|
||
});
|