1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-24 07:39:36 +02:00
it-tools/src/tools/qr-code-generator/index.ts
2022-04-22 23:31:40 +02:00

12 lines
492 B
TypeScript

import { Qrcode } from '@vicons/tabler';
import type { ITool } from './../Tool';
export const tool: ITool = {
name: 'QR Code generator',
path: '/qrcode-generator',
description:
'Generate and download QR-code for an url or just a text and customize the background and foreground colors.',
keywords: ['qr', 'code', 'generator', 'square', 'color', 'link', 'low', 'medium', 'quartile', 'high', 'transparent'],
component: () => import('./qr-code-generator.vue'),
icon: Qrcode,
};