Files
omni-tools/src/pages/tools/image/png/create-transparent/meta.ts

15 lines
653 B
TypeScript
Raw Normal View History

2024-06-25 07:44:36 +01:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
2024-06-25 07:51:39 +01:00
import image from '@assets/image.png';
2024-06-25 07:44:36 +01:00
export const tool = defineTool('png', {
name: 'Create transparent PNG',
path: 'create-transparent',
2024-06-25 07:51:39 +01:00
image,
2024-06-25 08:39:29 +01:00
shortDescription: 'Quickly make a PNG image transparent',
2024-06-25 07:44:36 +01:00
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'))
});