'use client'; import type * as React from 'react'; import * as ProgressPrimitive from '@radix-ui/react-progress'; import { cn } from '@workspace/ui/lib/utils'; function Progress({ className, value, ...props }: React.ComponentProps) { return ( ); } export { Progress };