import { cn } from '@affine/admin/utils'; import * as ProgressPrimitive from '@radix-ui/react-progress'; import * as React from 'react'; const Progress = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, value, ...props }, ref) => ( )); Progress.displayName = ProgressPrimitive.Root.displayName; export { Progress };