1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| import { Component } from '@angular/core';
|
| @Component({
| selector: 'app-qr',
| templateUrl: './qr.component.html',
| })
| export class QRComponent {
| value = 'https://ng-alain.com/';
| background = 'white';
| backgroundAlpha = 1.0;
| foreground = 'black';
| foregroundAlpha = 1.0;
| level = 'L';
| mime = 'image/png';
| padding = 10;
| size = 220;
| }
|
|