Bonsai Design System

Alert

Alert messages with default and destructive variants

Preview

Usage

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

<Alert>
  <Terminal className="h-4 w-4" />
  <AlertTitle>Heads up!</AlertTitle>
  <AlertDescription>
    You can add components to your app using the CLI.
  </AlertDescription>
</Alert>

<Alert variant="destructive">
  <AlertCircle className="h-4 w-4" />
  <AlertTitle>Error</AlertTitle>
  <AlertDescription>
    Your session has expired. Please log in again.
  </AlertDescription>
</Alert>

Install

npx shadcn add @bonsai/alert

On this page