Ibrahima G. Coulibaly d4c544609a feat: ui changes
2025-02-25 06:17:10 +00:00

14 lines
333 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('list', {
name: 'Unwrap',
path: 'unwrap',
icon: 'mdi:unwrap',
description: '',
shortDescription: '',
keywords: ['unwrap'],
component: lazy(() => import('./index'))
});