npm install @thrivecart/uiyarn add @thrivecart/uipnpm add @thrivecart/uibun add @thrivecart/uiimport { Progress } from '@thrivecart/ui';Simple progress bar
<Progress value={60} />Different completion levels
<div className="flex flex-col gap-4">
<Progress value={0} />
<Progress value={25} />
<Progress value={50} />
<Progress value={75} />
<Progress value={100} />
</div>Pair the progress bar with a percentage or descriptive label for clarity.
Progress should update smoothly as the task advances.
If you don't know the progress percentage, use Spinner instead.
Don't artificially animate progress. Show real completion data.
role="progressbar" with aria-valuenow, aria-valuemin, aria-valuemax.