examples/progress-linear.tsx
import { Progress } from "@/components/wensity/progress";export function LinearProgress() {return <Progress value={48} label="Upload" showValue tone="brand" />;}
Progress UI for uploads, onboarding, and capacity states.
Practical examples and common states for the same installable component.
Standard progress bar with animated value changes.
import { Progress } from "@/components/wensity/progress";export function LinearProgress() {return <Progress value={48} label="Upload" showValue tone="brand" />;}
Compact radial progress for cards and metric tiles.
Multi-step progress for checkout or onboarding flows.
Loading animation when completion is unknown.
import { Progress } from "@/components/wensity/progress";export function IndeterminateProgress() {return <Progress indeterminate label="Syncing workspace" tone="brand" />;}
Multiple values in one capacity bar with legend.