15 lines
455 B
TypeScript
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;
|
|
}
|