mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-18 21:49:31 +02:00
14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('list', {
|
|
name: 'Rotate',
|
|
path: 'rotate',
|
|
// image,
|
|
description: '',
|
|
shortDescription: '',
|
|
keywords: ['rotate'],
|
|
component: lazy(() => import('./index'))
|
|
});
|