apps/v4/content/docs/components/radix/alert.mdx
<ComponentPreview name="alert-demo" styleName="radix-nova" previewClassName="h-auto sm:h-72 p-6" />
npx shadcn@latest add alert
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="alert" title="components/ui/alert.tsx" styleName="radix-nova" />
<Step>Update the import paths to match your project setup.</Step>
</Steps> </TabsContent> </CodeTabs>import {
Alert,
AlertAction,
AlertDescription,
AlertTitle,
} from "@/components/ui/alert"
<Alert>
<InfoIcon />
<AlertTitle>Heads up!</AlertTitle>
<AlertDescription>
You can add components and dependencies to your app using the cli.
</AlertDescription>
<AlertAction>
<Button variant="outline">Enable</Button>
</AlertAction>
</Alert>
A basic alert with an icon, title and description.
<ComponentPreview name="alert-basic" styleName="radix-nova" previewClassName="h-auto sm:h-72 p-6" />
Use variant="destructive" to create a destructive alert.
<ComponentPreview name="alert-destructive" styleName="radix-nova" previewClassName="h-auto sm:h-72 p-6" />
Use AlertAction to add a button or other action element to the alert.
<ComponentPreview name="alert-action" styleName="radix-nova" previewClassName="h-auto sm:h-72 p-6" />
You can customize the alert colors by adding custom classes such as bg-amber-50 dark:bg-amber-950 to the Alert component.
<ComponentPreview name="alert-colors" styleName="radix-nova" previewClassName="h-auto sm:h-72 p-6" />
To enable RTL support in shadcn/ui, see the RTL configuration guide.
<ComponentPreview styleName="radix-nova" name="alert-rtl" direction="rtl" previewClassName="h-auto sm:h-72 p-6" />
The Alert component displays a callout for user attention.
| Prop | Type | Default |
|---|---|---|
variant | "default" | "destructive" | "default" |
The AlertTitle component displays the title of the alert.
| Prop | Type | Default |
|---|---|---|
className | string | - |
The AlertDescription component displays the description or content of the alert.
| Prop | Type | Default |
|---|---|---|
className | string | - |
The AlertAction component displays an action element (like a button) positioned absolutely in the top-right corner of the alert.
| Prop | Type | Default |
|---|---|---|
className | string | - |