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