npm

Progress

Progress is a horizontal bar that shows how far a task has completed.

Installation

pnpm add @viliha/vui-ui

Then import from @viliha/vui-ui/progress.

Usage

Drive it with a value from 0–100; the indicator animates on change.

progress-demo.tsx
import { Progress } from "@viliha/vui-ui/progress";

export function Example() {
  return <Progress value={66} />;
}