Progress
Linear progress indicator. Use the wrapper or compose ProgressTrack + ProgressIndicator with a raw base-ui Progress.Root.
Values with label
Uploading25%
Processing60%
Almost done90%
Complete100%
Status colours
Default
Success
Warning
Error
Indeterminate
Loading…
import { Progress } from "@brijbyte/agentic-ui/progress";
import "@brijbyte/agentic-ui/progress.css";
export default function IndeterminateDemo() {
// Pass value={null} to show the indeterminate animation.
return (
<div style={{ width: "100%" }}>
<Progress value={null} label="Loading…" />
</div>
);
}
Composed: base-ui Root + styled parts
build step 4/6