Displays a callout for user attention with important and contextual information.
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert" import { Terminal } from "lucide-react" export function AlertDemo() { return ( <Alert> <Terminal className="h-4 w-4" /> <AlertTitle>Heads up!</AlertTitle> <AlertDescription> You can add components to your app using the CLI. </AlertDescription> </Alert> ) }