import * as React from "react"; import * as ProgressPrimitive from "@radix-ui/react-progress"; const Progress = ({ value, max = 100, className, ...props }) => { return ( ); }; export { Progress };