import { Component, Input } from '@angular/core'; import { AbstractControl } from '@angular/forms'; @Component({ selector: 'kit-check', templateUrl: './check.component.html', styleUrls: ['../styles/index.scss'] }) export class CheckComponent { @Input() label: string = ''; @Input() control: AbstractControl | any; }