mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-23 07:59:31 +02:00
15 lines
528 B
TypeScript
15 lines
528 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',
|
|
icon: 'material-symbols-light:rotate-right',
|
|
description:
|
|
'A tool to rotate items in a list by a specified number of positions. Shift elements left or right while maintaining their relative order.',
|
|
shortDescription: 'Shift list items by position.',
|
|
keywords: ['rotate'],
|
|
component: lazy(() => import('./index'))
|
|
});
|