Files
omni-tools/src/pages/tools/string/rot13/meta.ts
2025-07-14 18:04:30 +01:00

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'))
});