15 lines
513 B
TypeScript
Raw Normal View History

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'],
userTypes: ['General Users', 'Students'],
component: lazy(() => import('./index'))
});