import { Progress } from "@/components/ui/progress"; interface BillingProgressProps { label: string; value: number; max: number; } export function BillingProgress({ label, value, max }: BillingProgressProps) { return (