Rad UI is still under active development. You are free to use it in your projects, but expect breaking changes. If you'd like to contribute to Rad UI, please check out Getting Started

Progress

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 = () => {
    return  <div style={{width:"200px"}}>
                        <Progress value={90}  />
                   </div>
}

<Kbd>Ctrl + C</Kbd>