Displays a callout for user attention with various styles, sizes, and icon options.
Heads up!
You can add components to your app using the cli.
Installation
Run the following command:
Update your imports:
import { Alert, AlertTitle, AlertDescription } from "@/components/ui/alert"
Usage
import { Alert, AlertTitle, AlertDescription } from "@/components/ui/alert";import { AlertCircle } from "lucide-react";export default function Home() { return ( <Alert> <AlertCircle /> <AlertTitle>Heads up!</AlertTitle> <AlertDescription>You can add components to your app using the CLI.</AlertDescription> </Alert> );}