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