'use client'; import type * as React from 'react'; import { Progress as ProgressPrimitive } from 'radix-ui'; import { cn } from '@spoon/ui'; const Progress = ({ className, value, ...props }: React.ComponentProps) => ( ); export { Progress };