Files
omni-tools/src/pages/tools/list/rotate/meta.ts
Ibrahima G. Coulibaly e2c6d02fe6 fix: missing meta
2025-03-10 00:56:05 +00:00

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'))
});