"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 { indeterminate?: boolean; } const IndeterminateProgress = React.forwardRef< React.ElementRef, ProgressProps >(({ className, value, indeterminate = false, ...props }, ref) => ( )); IndeterminateProgress.displayName = ProgressPrimitive.Root.displayName; export { IndeterminateProgress };