Allow modals to have button icons

This commit is contained in:
Gregor Wassmann 2022-01-29 00:04:39 +01:00
commit a46cd55d15
8 changed files with 67 additions and 0 deletions

View file

@ -9,6 +9,12 @@ export interface ModalFooterProps
*/
primaryButtonText?: string;
/**
* Specify the primary button props
* @default {}
*/
primaryButtonProps?: ButtonProps;
/**
* Set to `true` to disable the primary button
* @default false

View file

@ -81,6 +81,12 @@ export interface ModalProps
*/
primaryButtonDisabled?: boolean;
/**
* Specify the primary button props
* @default {}
*/
primaryButtonProps?: ButtonProps;
/**
* Set to `true` for the "submit" and "click:button--primary" events
* to be dispatched when pressing "Enter"