import * as React from 'react'; import * as ProgressPrimitive from '@radix-ui/react-progress'; import { cn } from '../lib/utils'; interface ProgressProps { value: number; className?: string; indicatorClassName?: string; } export function Progress({ value, className, indicatorClassName }: ProgressProps) { return ( ); }