import * as React from 'react'; import * as ProgressPrimitive from '@radix-ui/react-progress'; import { cn } from '@/lib/utils'; interface ProgressProps extends React.ComponentPropsWithoutRef { indicatorClassName?: string; indicatorColor?: string; } const Progress = React.forwardRef< React.ElementRef, ProgressProps >(({ className, value, indicatorClassName, indicatorColor, ...props }, ref) => ( )); Progress.displayName = ProgressPrimitive.Root.displayName; export { Progress };