mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
23 lines
553 B
TypeScript
23 lines
553 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('image-generic', {
|
||
|
|
name: 'Resize Image',
|
||
|
|
path: 'resize',
|
||
|
|
icon: 'mdi:resize', // Iconify icon as a string
|
||
|
|
description:
|
||
|
|
'Resize JPG, PNG, SVG or GIF images by pixels or percentage while maintaining aspect ratio or not.',
|
||
|
|
shortDescription: 'Resize images easily.',
|
||
|
|
keywords: [
|
||
|
|
'resize',
|
||
|
|
'image',
|
||
|
|
'scale',
|
||
|
|
'jpg',
|
||
|
|
'png',
|
||
|
|
'svg',
|
||
|
|
'gif',
|
||
|
|
'dimensions'
|
||
|
|
],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|