mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-18 10:16:42 +00:00
14 lines
469 B
TypeScript
14 lines
469 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('string', {
|
||
|
|
name: 'Truncate text',
|
||
|
|
path: 'truncate',
|
||
|
|
shortDescription: 'Truncate your text easily',
|
||
|
|
icon: 'material-symbols-light:short-text',
|
||
|
|
description:
|
||
|
|
'Load your text in the input form on the left and you will automatically get truncated text on the right.',
|
||
|
|
keywords: ['text', 'truncate'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|