projects/rebirth-ng/src/lib/action-button/action-item.model.ts
Properties |
disabled |
disabled:
|
Type : boolean
|
Optional |
divider |
divider:
|
Type : boolean
|
Optional |
header |
header:
|
Type : boolean
|
Optional |
icon |
icon:
|
Type : string
|
Optional |
id |
id:
|
Type : string | number
|
Optional |
text |
text:
|
Type : string
|
Optional |
export interface ActionItem {
id?: string | number;
text?: string;
icon?: string;
divider?: boolean;
header?: boolean;
disabled?: boolean;
}