import { ChangeDetectionStrategy, Component, Input } from '@angular/core'; @Component({ selector: 'iqser-chevron-button [label]', templateUrl: './chevron-button.component.html', styleUrls: ['./chevron-button.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) export class ChevronButtonComponent { @Input() label!: string; @Input() showDot = false; @Input() primary = false; @Input() disabled = false; }