mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
598 B
TypeScript
14 lines
598 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
|||
|
|
import { lazy } from 'react';
|
|||
|
|
// import image from '@assets/text.png';
|
|||
|
|
|
|||
|
|
export const tool = defineTool('png', {
|
|||
|
|
name: 'Create transparent PNG',
|
|||
|
|
path: 'create-transparent',
|
|||
|
|
// image,
|
|||
|
|
description:
|
|||
|
|
"World's simplest online Portable Network Graphics transparency maker. Just import your PNG image in the editor on the left and you will instantly get a transparent PNG on the right. Free, quick, and very powerful. Import a PNG – get a transparent PNG.",
|
|||
|
|
keywords: ['create', 'transparent'],
|
|||
|
|
component: lazy(() => import('./index'))
|
|||
|
|
});
|