Alert

PreviousNext

Displays a callout for user attention.

Docs
bunduicomponent

Preview

Loading preview…
examples/components/alert/default/page.tsx
import { Alert, AlertTitle } from "@/components/ui/alert";

export default function AlertDefault() {
  return (
    <Alert>
      <AlertTitle>This is a default message.</AlertTitle>
    </Alert>
  );
}

Installation

npx shadcn@latest add @bundui/alert-default

Usage

import { AlertDefault } from "@/components/alert-default"
<AlertDefault />