import { cn } from '@/lib/utils'; function Progress({ value = 0, className, ...props }: React.ComponentProps<'div'> & { value?: number }) { const clamped = Math.min(100, Math.max(0, value)); return (
); } export { Progress };