18 lines
470 B
TypeScript
Raw Normal View History

2025-02-23 14:45:10 +00:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('png', {
2025-07-14 13:55:01 +01:00
i18n: {
name: 'image:compressPng.title',
description: 'image:compressPng.description',
shortDescription: 'image:compressPng.shortDescription'
},
2025-07-14 18:04:30 +01:00
2025-02-23 14:45:10 +00:00
path: 'compress-png',
2025-02-25 06:17:10 +00:00
icon: 'material-symbols-light:compress',
2025-07-14 18:04:30 +01:00
2025-02-23 14:45:10 +00:00
keywords: ['compress', 'png'],
component: lazy(() => import('./index'))
});