2022-04-14 18:18:15 +02:00
|
|
|
import { Qrcode } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-14 18:18:15 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-04-14 18:18:15 +02:00
|
|
|
name: 'QR Code generator',
|
2022-04-16 10:10:21 +02:00
|
|
|
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,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|