import { AlertCircleIcon } from "lucide-react";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
export default function AlertWarning() {
return (
<Alert variant="destructive" className="*:text-orange-400!">
<AlertCircleIcon />
<AlertTitle>Unable to process your payment.</AlertTitle>
<AlertDescription>Please verify your billing information and try again.</AlertDescription>
</Alert>
);
}
npx shadcn@latest add @bundui/alert-warningimport { AlertWarning } from "@/components/alert-warning"<AlertWarning />