Files
omni-tools/src/pages/tools/string/reverse/meta.ts

14 lines
636 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
name: 'Reverse',
path: 'reverse',
2025-03-08 07:46:31 -05:00
icon: 'material-symbols-light:swap-horiz',
2025-03-08 08:38:35 +00:00
description:
"World's simplest browser-based utility for reversing text. Input any text and get it instantly reversed, character by character. Perfect for creating mirror text, analyzing palindromes, or playing with text patterns. Preserves spaces and special characters while reversing.",
2025-03-08 07:38:45 +00:00
shortDescription: 'Reverse any text character by character',
keywords: ['reverse'],
component: lazy(() => import('./index'))
2024-07-14 00:23:30 +01:00
});