Rad UI is under active development and looking for contributors to shape the future of the library. If you'd like to contribute to Rad UI, please check out Getting Started

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>
)