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