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',
|
2025-07-18 14:45:15 -07:00
|
|
|
shortDescription: 'image:resize.shortDescription',
|
2025-07-22 19:47:09 +01:00
|
|
|
userTypes: ['generalUsers']
|
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'))
|
|
|
|
|
});
|