mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-22 07:29:39 +02:00
17 lines
460 B
TypeScript
17 lines
460 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('image-generic', {
|
|
i18n: {
|
|
name: 'image:createTransparent.title',
|
|
description: 'image:createTransparent.description',
|
|
shortDescription: 'image:createTransparent.shortDescription'
|
|
},
|
|
|
|
path: 'create-transparent',
|
|
icon: 'mdi:circle-transparent',
|
|
|
|
keywords: ['create', 'transparent'],
|
|
component: lazy(() => import('./index'))
|
|
});
|