mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
20 lines
686 B
TypeScript
20 lines
686 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('gif', {
|
|
name: 'Change GIF Speed',
|
|
path: 'change-speed',
|
|
icon: 'material-symbols:speed',
|
|
description:
|
|
'Change the playback speed of GIF animations. Speed up or slow down GIFs while maintaining smooth animation.',
|
|
shortDescription: 'Change GIF animation speed',
|
|
keywords: ['gif', 'speed', 'animation', 'fast', 'slow'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'gif.changeSpeed.name',
|
|
description: 'gif.changeSpeed.description',
|
|
shortDescription: 'gif.changeSpeed.shortDescription'
|
|
}
|
|
});
|