mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
11 lines
434 B
TypeScript
11 lines
434 B
TypeScript
import { Speakerphone } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Text to NATO alphabet',
|
|
path: '/text-to-nato-alphabet',
|
|
description: 'Transform text into NATO phonetic alphabet for oral transmission.',
|
|
keywords: ['string', 'nato', 'alphabet', 'phonetic', 'oral', 'transmission'],
|
|
component: () => import('./text-to-nato-alphabet.vue'),
|
|
icon: Speakerphone,
|
|
});
|