Ibrahima G. Coulibaly e2c6d02fe6 fix: missing meta
2025-03-10 00:56:05 +00:00

15 lines
511 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Wrap',
path: 'wrap',
icon: 'mdi:wrap',
description:
'A tool to wrap each item in a list with custom prefix and suffix characters. Useful for formatting lists for code, markup languages, or presentation.',
shortDescription: 'Add characters around list items.',
keywords: ['wrap'],
component: lazy(() => import('./index'))
});