import { Component } from '@angular/core'; import { FormControl } from '@angular/forms'; @Component({ selector: 'prutech-dynamic-checkbox', styleUrls: ['./dynamic-checkbox.component.scss'], templateUrl: './dynamic-checkbox.component.html', }) export class PtDynamicCheckboxComponent { control: FormControl; label: string = ''; name: string = ''; hint: string = ''; required: boolean = false; readonly: boolean = false; hidden: boolean = false; showLabel: boolean = false; }