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

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