Progress component is used to show the progress of a task. It can be used to show the progress of a file upload, a download, a form submission, or any other task that requires progress to be shown.
import Progress from "@radui/ui/Progress";
const ProgressExample = () => (
<div style={{ width: "200px" }}>
<Progress value={90} />
</div>
)