apps/v4/content/docs/components/radix/alert-dialog.mdx
<ComponentPreview name="alert-dialog-demo" styleName="radix-nova" previewClassName="h-56" />
npx shadcn@latest add alert-dialog
<Step>Install the following dependencies:</Step>
npm install radix-ui
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="alert-dialog" title="components/ui/alert-dialog.tsx" styleName="radix-nova" />
<Step>Update the import paths to match your project setup.</Step>
</Steps> </TabsContent> </CodeTabs>import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
AlertDialogTrigger,
} from "@/components/ui/alert-dialog"
<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="outline">Show Dialog</Button>
</AlertDialogTrigger>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
<AlertDialogDescription>
This action cannot be undone. This will permanently delete your account
from our servers.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>Cancel</AlertDialogCancel>
<AlertDialogAction>Continue</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
A basic alert dialog with a title, description, and cancel and continue buttons.
<ComponentPreview name="alert-dialog-basic" styleName="radix-nova" previewClassName="h-56" />
Use the size="sm" prop to make the alert dialog smaller.
<ComponentPreview name="alert-dialog-small" styleName="radix-nova" previewClassName="h-56" />
Use the AlertDialogMedia component to add a media element such as an icon or image to the alert dialog.
<ComponentPreview name="alert-dialog-media" styleName="radix-nova" previewClassName="h-56" />
Use the size="sm" prop to make the alert dialog smaller and the AlertDialogMedia component to add a media element such as an icon or image to the alert dialog.
<ComponentPreview name="alert-dialog-small-media" styleName="radix-nova" previewClassName="h-56" />
Use the AlertDialogAction component to add a destructive action button to the alert dialog.
<ComponentPreview name="alert-dialog-destructive" styleName="radix-nova" previewClassName="h-56" />
To enable RTL support in shadcn/ui, see the RTL configuration guide.
<ComponentPreview styleName="radix-nova" name="alert-dialog-rtl" direction="rtl" previewClassName="h-56" />
Use the size prop on the AlertDialogContent component to control the size of the alert dialog. It accepts the following values:
| Prop | Type | Default |
|---|---|---|
size | "default" | "sm" | "default" |
For more information about the other components and their props, see the Radix UI documentation.