Alert DialogA modal dialog that interrupts the user with important content and expects a response.Docs API Reference Dependencies@radix-ui/react-alert-dialog: v1.1.2 PreviewCodeDelete account Installation CLIManualnpmpnpmyarnbunnpx @kosori/cli add components alert-dialog Usage import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from '~/components/ui/alert-dialog'; <AlertDialog> <AlertDialogTrigger>Open</AlertDialogTrigger> <AlertDialogContent> <AlertDialogHeader> <AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle> <AlertDialogDescription> This action cannot be undone. This will permanently delete your account and remove your data from our servers. </AlertDialogDescription> </AlertDialogHeader> <AlertDialogFooter> <AlertDialogCancel>Cancel</AlertDialogCancel> <AlertDialogAction>Continue</AlertDialogAction> </AlertDialogFooter> </AlertDialogContent> </AlertDialog>Edit on GitHubPreviousAlertNextAspect Ratio