mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
15 lines
511 B
TypeScript
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'))
|
|
});
|