mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
16 lines
482 B
TypeScript
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>
|
|
)
|
|
}
|