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

18 lines
491 B
TypeScript

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