mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
580 B
TypeScript
14 lines
580 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('string', {
|
||
|
|
name: 'Text Replacer',
|
||
|
|
path: 'replacer',
|
||
|
|
shortDescription: 'Quickly replace text in your content',
|
||
|
|
icon: 'material-symbols-light:find-replace',
|
||
|
|
description:
|
||
|
|
'Easily replace specific text in your content with this simple, browser-based tool. Just input your text, set the text you want to replace and the replacement value, and instantly get the updated version.',
|
||
|
|
keywords: ['text', 'replace'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|