Files
omni-tools/src/pages/tools/string/to-morse/meta.ts

15 lines
618 B
TypeScript
Raw Normal View History

2024-06-25 02:07:57 +01:00
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',
2025-02-25 06:17:10 +00:00
icon: 'arcticons:morse',
2024-06-25 03:11:48 +01:00
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.",
2024-06-25 08:39:29 +01:00
shortDescription: 'Quickly encode text to morse',
2024-06-25 02:07:57 +01:00
keywords: ['to', 'morse'],
component: lazy(() => import('./index'))
});