2024-06-25 07:44:36 +01:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
2025-04-02 20:48:00 +00:00
|
|
|
export const tool = defineTool('image-generic', {
|
2025-07-14 13:55:01 +01:00
|
|
|
i18n: {
|
|
|
|
|
name: 'image:createTransparent.title',
|
|
|
|
|
description: 'image:createTransparent.description',
|
|
|
|
|
shortDescription: 'image:createTransparent.shortDescription'
|
|
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-06-25 07:44:36 +01:00
|
|
|
path: 'create-transparent',
|
2025-02-25 06:17:10 +00:00
|
|
|
icon: 'mdi:circle-transparent',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-06-25 07:44:36 +01:00
|
|
|
keywords: ['create', 'transparent'],
|
|
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|