mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-18 11:04:03 +01:00
18 lines
490 B
TypeScript
18 lines
490 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('image-generic', {
|
|
i18n: {
|
|
name: 'image:compress.title',
|
|
description: 'image:compress.description',
|
|
shortDescription: 'image:compress.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
},
|
|
|
|
path: 'compress',
|
|
icon: 'material-symbols-light:compress-rounded',
|
|
|
|
keywords: ['image', 'compress', 'reduce', 'quality'],
|
|
component: lazy(() => import('./index'))
|
|
});
|