mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
18 lines
470 B
TypeScript
18 lines
470 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('png', {
|
|
i18n: {
|
|
name: 'image:compressPng.title',
|
|
description: 'image:compressPng.description',
|
|
shortDescription: 'image:compressPng.shortDescription'
|
|
},
|
|
|
|
path: 'compress-png',
|
|
icon: 'material-symbols-light:compress',
|
|
|
|
keywords: ['compress', 'png'],
|
|
component: lazy(() => import('./index'))
|
|
});
|