import Link from "next/link"; import { USAGE_LIMIT_MESSAGE } from "@/lib/action-errors"; import { BILLING_URL } from "@/lib/external-urls"; import { cn } from "@/lib/utils"; interface UsageLimitMessageProps { className?: string; } // Over-limit (trial-expired) notice shown in scan launch flows. Pairs the shared // usage-limit copy with a link to Prowler Cloud billing. export const UsageLimitMessage = ({ className }: UsageLimitMessageProps) => (
{USAGE_LIMIT_MESSAGE}{" "} Manage Billing
);