mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
442 B
TypeScript
14 lines
442 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
name: 'Repeat text',
|
|
path: 'repeat',
|
|
shortDescription: 'Repeat text multiple times',
|
|
icon: 'material-symbols-light:replay',
|
|
description:
|
|
'This tool allows you to repeat a given text multiple times with an optional separator.',
|
|
keywords: ['text', 'repeat'],
|
|
component: lazy(() => import('./index'))
|
|
});
|