mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
18 lines
427 B
TypeScript
18 lines
427 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('string', {
|
|
i18n: {
|
|
name: 'string:rot13.title',
|
|
description: 'string:rot13.description',
|
|
shortDescription: 'string:rot13.shortDescription'
|
|
},
|
|
|
|
path: 'rot13',
|
|
icon: 'hugeicons:encrypt',
|
|
|
|
keywords: ['rot13'],
|
|
component: lazy(() => import('./index'))
|
|
});
|