mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-10 00:48:37 -06:00
18 lines
474 B
TypeScript
18 lines
474 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('list', {
|
|
path: 'rotate',
|
|
icon: 'material-symbols-light:rotate-right',
|
|
|
|
keywords: ['rotate'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'list:rotate.title',
|
|
description: 'list:rotate.description',
|
|
shortDescription: 'list:rotate.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|