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