Files
omni-tools/src/pages/tools/string/rotate/meta.ts

14 lines
338 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('string', {
name: 'Rotate',
path: 'rotate',
2025-03-07 22:19:49 +00:00
icon: 'carbon:rotate',
description: '',
shortDescription: '',
keywords: ['rotate'],
component: lazy(() => import('./index'))
2025-03-07 22:19:49 +00:00
});