Files
omni-tools/src/pages/tools/string/rot13/meta.ts
Ibrahima G. Coulibaly 2dc78e7392 chore: merge
2025-03-07 22:19:49 +00:00

14 lines
339 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('string', {
name: 'Rot13',
path: 'rot13',
icon: 'hugeicons:encrypt',
description: '',
shortDescription: '',
keywords: ['rot13'],
component: lazy(() => import('./index'))
});