Alert

Displays a callout for user attention.

shadcn/ui docs

Installation

pnpm dlx shadcn@latest add https://neobrutalism.dev/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

Default

Destructive

Only Icon and Description

Only Description

Only Icon and Title

Long Description

Long Title

Long Title and Description

With Button