Alert Dialog
Alert dialogs are a specific type of Dialog. They display important information that users need to acknowledge.
Component props
| Name | Type | Description |
|---|---|---|
| title | ReactNode | Dialog title |
| description | ReactNode | Dialog description |
| isDanger | boolean | Shows confirm button as danger variant |
| isConfirmDisabled | boolean | Disables the confirm button |
| confirmLabel | ReactNode | Confirm button text (default: "Confirm") |
| cancelLabel | ReactNode | Cancel button text (default: "Cancel") |
| onConfirm | () => void | Called when confirm is clicked |
| onCancel | () => void | Called when cancel is clicked |