components
/components/ui/alert-dialog.tsx
/components/ui/alert-dialog.tsx
Installation
Usage
Imports
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
} from "@/components/ui/alert-dialog"Code
<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>Examples
Backdrop - Blur
Backdrop - Transparent
Destructive
Destructive Dialog - w/Divider
Destructive Dialog - Center
Props
<AlertDialog>
| Name | Default | Values |
|---|---|---|
| External Reference | - | - |
<AlertDialogTrigger>
| Name | Default | Values |
|---|---|---|
| External Reference | - | - |
<AlertDialogContent>
| Name | Default | Values |
|---|---|---|
| backdrop | overlay | overlayblurtransparent |
| External Reference | - | - |
<AlertDialogHeader>
| Name | Default | Values |
|---|
<AlertDialogTitle>
| Name | Default | Values |
|---|---|---|
| External Reference | - | - |
<AlertDialogDescription>
| Name | Default | Values |
|---|---|---|
| External Reference | - | - |
<AlertDialogFooter>
| Name | Default | Values |
|---|
<AlertDialogAction>
| Name | Default | Values |
|---|---|---|
| External Reference | - | - |
<AlertDialogCancel>
| Name | Default | Values |
|---|---|---|
| External Reference | - | - |