omni-tools/src/pages/tools/list/shuffle/meta.ts
2025-07-22 19:47:09 +01:00

17 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: 'shuffle',
icon: 'material-symbols-light:shuffle',
keywords: ['shuffle'],
component: lazy(() => import('./index')),
i18n: {
name: 'list:shuffle.title',
description: 'list:shuffle.description',
shortDescription: 'list:shuffle.shortDescription',
userTypes: ['generalUsers']
}
});