catng
Version:
Angular Dynamic Form Input Component
17 lines (16 loc) • 468 B
TypeScript
export interface ButtonModel {
label?: string;
icon?: string;
styleClass?: string;
disabled?: boolean;
size?: 'small' | 'large' | 'medium';
loading?: boolean;
severity?: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;
tooltip?: string;
raised?: boolean;
rounded?: boolean;
text?: boolean;
outlined?: boolean;
badge?: string;
buttonDisabled?: boolean;
}