feat: create transparent png

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-25 07:44:36 +01:00
parent c49d18cac3
commit 3da580e3a9
7 changed files with 191 additions and 22 deletions

View File

@@ -0,0 +1,13 @@
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'))
});