import * as React from "react" import { cn } from "@/lib/utils" interface ProgressProps extends React.HTMLAttributes { value?: number max?: number indicatorClassName?: string } const Progress = React.forwardRef( ({ className, value = 0, max = 100, indicatorClassName, ...props }, ref) => { const pct = Math.min(100, Math.max(0, (value / max) * 100)) return (
) } ) Progress.displayName = "Progress" export { Progress }