mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-10-10 00:09:29 +02:00
14 lines
632 B
TypeScript
14 lines
632 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('image-generic', {
|
|
name: 'Change image Opacity',
|
|
path: 'change-opacity',
|
|
icon: 'material-symbols:opacity',
|
|
description:
|
|
'Easily adjust the transparency of your images. Simply upload your image, 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 images',
|
|
keywords: ['opacity', 'transparency', 'png', 'alpha', 'jpg', 'jpeg', 'image'],
|
|
component: lazy(() => import('./index'))
|
|
});
|