common-ui/src/lib/buttons/chevron-button/chevron-button.component.ts
2021-12-14 14:36:13 +02:00

15 lines
455 B
TypeScript

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;
}