2024-07-12 23:50:15 +00:00
|
|
|
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',
|
2025-03-10 00:56:05 +00:00
|
|
|
description:
|
|
|
|
|
'A tool to rotate characters in a string by a specified number of positions. Shift characters left or right while maintaining their relative order.',
|
|
|
|
|
shortDescription: 'Shift characters in text by position.',
|
2024-07-12 23:50:15 +00:00
|
|
|
keywords: ['rotate'],
|
|
|
|
|
component: lazy(() => import('./index'))
|
2025-03-07 22:19:49 +00:00
|
|
|
});
|