8bit

Search docs

Search for a docs page

Alert

Displays a callout for user attention.

Installation

pnpm dlx shadcn@latest add https://8bit.cnlibs.com/r/alert.json

Usage

import { CheckCircle2Icon } from "lucide-react";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
<Alert className="w-full max-w-md">
  <CheckCircle2Icon />
  <AlertTitle>Success! Your changes have been saved</AlertTitle>
  <AlertDescription>
    This is an alert with an icon, a title, and a description.
  </AlertDescription>
</Alert>

Destructive

Use the destructive variant to signal an error.