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', {
|
2025-07-14 13:55:01 +01:00
|
|
|
i18n: {
|
|
|
|
|
name: 'string:rotate.title',
|
|
|
|
|
description: 'string:rotate.description',
|
2025-07-18 15:03:26 -07:00
|
|
|
shortDescription: 'string:rotate.shortDescription',
|
2025-07-22 19:47:09 +01:00
|
|
|
userTypes: ['generalUsers', 'developers']
|
2025-07-14 13:55:01 +01:00
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-07-12 23:50:15 +00:00
|
|
|
path: 'rotate',
|
2025-03-07 22:19:49 +00:00
|
|
|
icon: 'carbon:rotate',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-07-12 23:50:15 +00:00
|
|
|
keywords: ['rotate'],
|
|
|
|
|
component: lazy(() => import('./index'))
|
2025-03-07 22:19:49 +00:00
|
|
|
});
|