Docs
alert

alert

Displays a callout for user attention.

Installation

npx duck-ui@latest add alert
npx duck-ui@latest add alert

Usage

import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"
<Alert>
  <Terminal className="h-4 w-4" />
  <AlertTitle>Heads up!</AlertTitle>
  <AlertDescription>
    You can add components and dependencies to your app using the cli.
  </AlertDescription>
</Alert>
<Alert>
  <Terminal className="h-4 w-4" />
  <AlertTitle>Heads up!</AlertTitle>
  <AlertDescription>
    You can add components and dependencies to your app using the cli.
  </AlertDescription>
</Alert>

API Reference


Alert

  • variant (VariantProps<typeof alertVariants>['variant'], optional): Visual style variant for the alert.
  • className (string, optional): Additional class names to apply.
  • ...props (React.ComponentProps<'div'>): Native div element props.

AlertTitle

  • className (string, optional): Additional class names to apply.
  • ...props (React.ComponentProps<'div'>): Native div element props.

AlertDescription

  • className (string, optional): Additional class names to apply.
  • ...props (React.ComponentProps<'div'>): Native div element props.