2024-07-12 01:15:17 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
// import image from '@assets/text.png';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('string', {
|
|
|
|
|
name: 'Quote',
|
|
|
|
|
path: 'quote',
|
2025-03-07 22:19:49 +00:00
|
|
|
icon: 'proicons:quote',
|
2025-03-10 00:56:05 +00:00
|
|
|
description:
|
|
|
|
|
'A tool to add quotation marks or custom characters around text. Perfect for formatting strings for code, citations, or stylistic purposes.',
|
|
|
|
|
shortDescription: 'Add quotes around text easily.',
|
2024-07-12 01:15:17 +00:00
|
|
|
keywords: ['quote'],
|
|
|
|
|
component: lazy(() => import('./index'))
|
2025-03-07 22:19:49 +00:00
|
|
|
});
|