import * as React from "react"; import { cn } from "@/lib/utils"; export interface ProgressProps extends React.HTMLAttributes { value?: number; } const Progress = React.forwardRef( ({ className, value, ...props }, ref) => { const isIndeterminate = value === undefined; return (
); } ); Progress.displayName = "Progress"; export { Progress };