Installation
pnpm add @viliha/vui-uiThen 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} />;
}