it-tools/src/tools/qr-code-generator/index.ts

13 lines
495 B
TypeScript
Raw Normal View History

2022-04-14 18:18:15 +02:00
import { Qrcode } from '@vicons/tabler';
import { defineTool } from '../tool';
2022-04-14 18:18:15 +02:00
export const tool = defineTool({
2022-04-14 18:18:15 +02:00
name: 'QR Code generator',
path: '/qrcode-generator',
2022-04-22 23:31:40 +02:00
description:
'Generate and download QR-code for an url or just a text and customize the background and foreground colors.',
2022-04-14 18:18:15 +02:00
keywords: ['qr', 'code', 'generator', 'square', 'color', 'link', 'low', 'medium', 'quartile', 'high', 'transparent'],
component: () => import('./qr-code-generator.vue'),
icon: Qrcode,
});