RLH-14 - Implement Button component
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
export class ButtonModel {
|
||||
text: string = "text";
|
||||
type: ButtonType;
|
||||
disabled: () => boolean;
|
||||
click: () => void;
|
||||
}
|
||||
|
||||
export enum ButtonType {
|
||||
LINK = "btn-link",
|
||||
PRIMARY = "btn-primary",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user