19 lines
720 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-07-12 23:02:35 -07:00
icon: 'material-symbols-light:format-textdirection-l-to-r',
2025-03-08 07:46:31 -05:00
description:
2025-07-12 23:02:35 -07:00
"World's simplest browser-based utility for converting text to uppercase. Input your text and instantly get all characters in uppercase. Perfect for formatting, shouting, or emphasizing text.",
shortDescription: 'Convert text to uppercase',
keywords: ['uppercase'],
2025-07-12 23:02:35 -07:00
component: lazy(() => import('./index')),
i18n: {
2025-07-13 11:25:05 +01:00
name: 'string:uppercase.title',
description: 'string:uppercase.description',
shortDescription: 'string:uppercase.shortDescription'
2025-07-12 23:02:35 -07:00
}
2024-07-14 00:23:30 +01:00
});