14 lines
664 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
name: 'Uppercase',
path: 'uppercase',
2025-03-08 07:46:41 -05:00
icon: 'material-symbols-light:text-fields',
2025-03-08 07:46:31 -05:00
description:
"World's simplest browser-based utility for converting text to uppercase. Just input your text and it will be automatically converted to all capital letters. Perfect for creating headlines, emphasizing text, or standardizing text format. Supports various text formats and preserves special characters.",
2025-03-08 07:38:45 +00:00
shortDescription: 'Convert text to uppercase letters',
keywords: ['uppercase'],
component: lazy(() => import('./index'))
2024-07-14 00:23:30 +01:00
});