mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
13 lines
433 B
TypeScript
13 lines
433 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('video', {
|
||
|
|
name: 'Video to Gif',
|
||
|
|
path: 'video-to-gif',
|
||
|
|
icon: 'fluent:gif-16-regular',
|
||
|
|
description: 'This online utility lets you convert a short video to gif.',
|
||
|
|
shortDescription: 'Quickly convert a short video to gif',
|
||
|
|
keywords: ['video', 'to', 'gif', 'convert'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|