mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
21 lines
492 B
TypeScript
21 lines
492 B
TypeScript
import { AlertCircleIcon } from "lucide-react"
|
|
|
|
import {
|
|
Alert,
|
|
AlertDescription,
|
|
AlertTitle,
|
|
} from "@/styles/base-nova/ui/alert"
|
|
|
|
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>
|
|
)
|
|
}
|