Files
shadcn-ui/apps/v4/examples/radix/alert-destructive.tsx
shadcn b5c7a014c8 fix
2026-01-14 12:59:48 +04:00

16 lines
482 B
TypeScript

import { Alert, AlertDescription, AlertTitle } from "@/examples/radix/ui/alert"
import { AlertCircleIcon } from "lucide-react"
export default function AlertDestructive() {
return (
<Alert variant="destructive" className="max-w-md">
<AlertCircleIcon />
<AlertTitle>Payment failed</AlertTitle>
<AlertDescription>
Your payment could not be processed. Please check your payment method
and try again.
</AlertDescription>
</Alert>
)
}