Component referenceSource owned

Alert

Displays a callout for user attention.

Upstream reference
On this page11 sectionsBack to top
Live preview
Loading preview...

#Installation

npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/alert.json

#Usage

import { CheckCircle2Icon } from "lucide-react";

import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
<Alert>
  <CheckCircle2Icon />
  <AlertTitle>Success! Your changes have been saved</AlertTitle>
  <AlertDescription>This is an alert with icon, title and description.</AlertDescription>
</Alert>

#Examples

#Destructive

Loading preview...

#Only Icon and Description

Loading preview...

#Only Description

Loading preview...

#Only Icon and Title

Loading preview...

#Long Description

Loading preview...

#Long Title

Loading preview...

#Long Title and Description

Loading preview...

#With Button

Loading preview...