Alert Dialog
A modal dialog that interrupts the user with important content and expects a response.
Are you absolutely sure?
This action cannot be undone. This will permanently delete your account and remove your data from our servers.
// src/components/ui/alert-dialog.tsx — a Dialog with no close-X and explicit Cancel/Continue actions.
// Same open/close island hooks as Dialog; the overlay is non-dismissible by design (omit overlay-bg close).
Installation
$ bext ui add alert-dialog
Copy and paste the following into src/components/ui/alert-dialog.tsx.
// src/components/ui/alert-dialog.tsx — a Dialog with no close-X and explicit Cancel/Continue actions.
// Same open/close island hooks as Dialog; the overlay is non-dismissible by design (omit overlay-bg close).
This component is interactive — make sure the shared island is loaded (see Islands). It reacts to data-ui="alert-dialog" hooks.
Also add: button.
On This Page