Files
omni-tools/src/pages/tools/string/rotate/meta.ts
Ibrahima G. Coulibaly 56e0f1696c chore: translate userTypes
2025-07-22 19:47:09 +01:00

19 lines
475 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('string', {
i18n: {
name: 'string:rotate.title',
description: 'string:rotate.description',
shortDescription: 'string:rotate.shortDescription',
userTypes: ['generalUsers', 'developers']
},
path: 'rotate',
icon: 'carbon:rotate',
keywords: ['rotate'],
component: lazy(() => import('./index'))
});