Component

Alert

Displays a callout for user attention with Neo-Brutalism styling.

Preview

Variants

Installation

pnpm dlx brutx@latest add alert

Usage

import {
  Alert,
  AlertTitle,
  AlertDescription,
} from "@/components/ui/alert"
import { CheckCircle } from "lucide-react"

<Alert variant="success">
  <CheckCircle className="h-5 w-5" />
  <AlertTitle>Success!</AlertTitle>
  <AlertDescription>
    Your action was completed.
  </AlertDescription>
</Alert>