mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
13 lines
603 B
TypeScript
13 lines
603 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('png', {
|
|
name: 'Change PNG Opacity',
|
|
path: 'change-opacity',
|
|
icon: 'material-symbols:opacity',
|
|
description: 'Easily adjust the transparency of your PNG images. Simply upload your PNG file, use the slider to set the desired opacity level between 0 (fully transparent) and 1 (fully opaque), and download the modified image.',
|
|
shortDescription: 'Adjust transparency of PNG images',
|
|
keywords: ['opacity', 'transparency', 'png', 'alpha'],
|
|
component: lazy(() => import('./index'))
|
|
});
|