Alert

Displays a callout for user attention.

Variants

Code

Example
import { Alert, AlertDescription, AlertTitle } from "cephalopod-design-system"
import { Terminal } 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>