20 lines
761 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Wrap',
path: 'wrap',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols-light:wrap-text',
2025-03-10 00:56:05 +00:00
description:
2025-07-12 23:02:35 -07:00
"World's simplest browser-based utility for wrapping list items. Input your list and specify wrapping criteria to organize items into logical groups. Perfect for categorizing data, organizing information, or creating structured lists.",
shortDescription: 'Wrap list items with specified criteria',
keywords: ['wrap'],
2025-07-12 23:02:35 -07:00
component: lazy(() => import('./index')),
i18n: {
name: 'list.wrap.name',
description: 'list.wrap.description',
shortDescription: 'list.wrap.shortDescription'
}
2024-07-09 23:38:29 +01:00
});