aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/buttons/ibutton.interface.ts
blob: 289935b8f6047c81116d1e6c9aac522122efcbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Placement, ButtonType } from "../common/enums";

export interface IButtonComponent {
    text: string;
    disabled?: boolean;
    type?: ButtonType;
    testId?: string;
    preventDoubleClick?: boolean;
    icon_name?: string;
    icon_position?: string;
    show_spinner?: boolean;
    spinner_position?: Placement;
    size?: string;
}