mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-24 07:39:36 +02:00
12 lines
492 B
TypeScript
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,
|
|
};
|