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