pm-controls
Version:
ProModel Controls
27 lines (25 loc) • 617 B
text/typescript
import {
Component,
EventEmitter,
Input,
Output } from '@angular/core';
export class ButtonIconComponent {
Click = new EventEmitter();
ButtonClass: string = "button-icon-default";
IsDisabled: boolean;
MaxHeight: string;
OnClick() {
if (this.IsDisabled) return;
this.Click.emit();
}
}