2024-07-10 17:56:56 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
// import image from '@assets/text.png';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
|
|
|
|
path: 'randomize-case',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols-light:shuffle',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-07-10 17:56:56 +00:00
|
|
|
keywords: ['randomize', 'case'],
|
2025-07-12 23:02:35 -07:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'string:randomizeCase.title',
|
|
|
|
|
description: 'string:randomizeCase.description',
|
|
|
|
|
shortDescription: 'string:randomizeCase.shortDescription'
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2024-07-14 00:23:30 +01:00
|
|
|
});
|