27 lines
546 B
TypeScript
Raw Normal View History

2025-04-02 03:46:42 +00:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('image-generic', {
2025-07-14 13:55:01 +01:00
i18n: {
name: 'image:resize.title',
description: 'image:resize.description',
shortDescription: 'image:resize.shortDescription',
userTypes: ['General Users']
2025-07-14 13:55:01 +01:00
},
2025-07-14 18:04:30 +01:00
2025-04-02 03:46:42 +00:00
path: 'resize',
icon: 'mdi:resize', // Iconify icon as a string
2025-07-14 18:04:30 +01:00
2025-04-02 03:46:42 +00:00
keywords: [
'resize',
'image',
'scale',
'jpg',
'png',
'svg',
'gif',
'dimensions'
],
component: lazy(() => import('./index'))
});