mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
12 lines
489 B
TypeScript
12 lines
489 B
TypeScript
![]() |
import { Qrcode } from '@vicons/tabler';
|
||
|
import type { ITool } from './../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
name: 'QR Code generator',
|
||
|
path: '/qr-code-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,
|
||
|
};
|