2024-07-01 16:10:53 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('list', {
|
|
|
|
|
path: 'truncate',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols-light:content-cut',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-07-01 16:10:53 +00:00
|
|
|
keywords: ['truncate'],
|
2025-07-12 23:02:35 -07:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'list:truncate.title',
|
|
|
|
|
description: 'list:truncate.description',
|
|
|
|
|
shortDescription: 'list:truncate.shortDescription'
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2024-07-09 23:38:29 +01:00
|
|
|
});
|