Files
omni-tools/src/pages/tools/string/rotate/meta.ts
2025-07-18 14:45:15 -07:00

19 lines
486 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:rotate.title',
description: 'string:rotate.description',
shortDescription: 'string:rotate.shortDescription'
},
path: 'rotate',
icon: 'carbon:rotate',
keywords: ['rotate'],
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});