import * as React from 'react' import * as ProgressPrimitive from '@radix-ui/react-progress' import { cn } from '@/lib/utils' const Progress = React.forwardRef( ( { className, value = 0, ...props }: React.ComponentPropsWithoutRef & { value?: number }, ref: React.Ref ) => ( ) ) Progress.displayName = ProgressPrimitive.Root.displayName export { Progress }