StatusAlert
basic usage
success alert
danger alert
informational alert
alert with a custom aria-label on the close button
Non-dismissible alert
alert invoked via a button
alert with a link
StatusAlert Props API
- alertType
stringRequiredDefault'warning'specifies the type of alert that is being diplayed. It defaults to "warning". See the other available bootstrap options.
- className
stringRequiredis a string array that defines the classes to be used within the status alert.
- dialog
stringRequired |elementRequired Required Required - dismissible
boolRequiredDefaulttruespecifies if the status alert will include the dismissible X button to close the alert. It defaults to true.
- closeButtonAriaLabelDefault'Close'
stringRequired - onClose
isRequiredIf(PropTypes.func, props => props.dismissible)Requiredis a function that is called on close. It can be used to perform actions upon closing of the status alert, such as restoring focus to the previous logical focusable element. It is only required if
dismissibleis set totrueand not required if the alert is notdismissible. - open
boolRequiredDefaultfalsespecifies whether the status alert renders open or closed on the initial render. It defaults to false.