Files
omni-tools/src/pages/tools/string/text-replacer/meta.ts

19 lines
497 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
2025-07-14 13:55:01 +01:00
i18n: {
name: 'string:textReplacer.title',
description: 'string:textReplacer.description',
shortDescription: 'string:textReplacer.shortDescription'
},
2025-07-14 18:04:30 +01:00
path: 'replacer',
2025-07-14 18:04:30 +01:00
icon: 'material-symbols-light:find-replace',
2025-07-14 18:04:30 +01:00
keywords: ['text', 'replace'],
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});