mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
28 lines
556 B
TypeScript
28 lines
556 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('image-generic', {
|
|
i18n: {
|
|
name: 'image:qrCode.title',
|
|
description: 'image:qrCode.description',
|
|
shortDescription: 'image:qrCode.shortDescription'
|
|
},
|
|
|
|
path: 'qr-code',
|
|
icon: 'mdi:qrcode', // Iconify icon as a string
|
|
keywords: [
|
|
'qr code',
|
|
'qrcode',
|
|
'generator',
|
|
'url',
|
|
'text',
|
|
'email',
|
|
'phone',
|
|
'sms',
|
|
'wifi',
|
|
'vcard',
|
|
'contact'
|
|
],
|
|
component: lazy(() => import('./index'))
|
|
});
|