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