mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 01:19:33 +02:00
20 lines
846 B
TypeScript
20 lines
846 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('string', {
|
|
name: 'Randomize case',
|
|
path: 'randomize-case',
|
|
icon: 'material-symbols-light:shuffle',
|
|
description:
|
|
"World's simplest browser-based utility for randomizing text case. Input your text and instantly transform it with random upper and lower case letters. Perfect for creating unique text effects, testing case sensitivity, or generating varied text patterns.",
|
|
shortDescription: 'Randomize the case of letters in text',
|
|
keywords: ['randomize', 'case'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string.randomizeCase.name',
|
|
description: 'string.randomizeCase.description',
|
|
shortDescription: 'string.randomizeCase.shortDescription'
|
|
}
|
|
});
|