import { Terminal } from "lucide-react"; import * as React from "react"; import { Alert, AlertDescription, AlertTitle } from "./alert"; export function AlertDemo() { return ( <Alert> <Terminal className="h-4 w-4" /> <AlertTitle>Default Alert</AlertTitle> <AlertDescription> You can add components and dependencies to your app using the cli. </AlertDescription> </Alert> ); }