Feedback

Progress bars for completion feedback

Progress bars communicate how far a task has advanced—uploads, installs, or wizard steps. Integrate them into React dashboards and Next.js status pages with clear textual values.

Examples

Striped and animated track treatment.


Progress variants examples

Fill tokens, track scale, shape, and motion flags at a fixed value. Each snippet starts with Variant: listing the row tokens.


Appearance: DEFAULT, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: SECONDARY, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: DESTRUCTIVE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: EMERALD, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: INDIGO, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: PURPLE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: PINK, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: ROSE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: SKY, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: TEAL, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: YELLOW, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: ORANGE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: OUTLINE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GHOST, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GLASS, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-BLUE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-GREEN, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-RED, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-YELLOW, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-PURPLE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-TEAL, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-INDIGO, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-PINK, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: GRADIENT-ORANGE, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: INDIGO, Size: XS, Shape: ROUNDED, Striped: false, Animated: false


Appearance: INDIGO, Size: SM, Shape: ROUNDED, Striped: false, Animated: false


Appearance: INDIGO, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: INDIGO, Size: LG, Shape: ROUNDED, Striped: false, Animated: false


Appearance: INDIGO, Size: XL, Shape: ROUNDED, Striped: false, Animated: false


Appearance: TEAL, Size: MD, Shape: FLAT, Striped: false, Animated: false


Appearance: TEAL, Size: MD, Shape: ROUNDED, Striped: false, Animated: false


Appearance: TEAL, Size: MD, Shape: PILL, Striped: false, Animated: false


Appearance: DEFAULT, Size: MD, Shape: ROUNDED, Striped: true, Animated: false


Appearance: SKY, Size: MD, Shape: ROUNDED, Striped: false, Animated: true


Value: 0

What it does

Pair visuals with aria-valuenow updates for assistive technologies.

Avoid fake progress that stalls—users lose trust quickly.

Composition and API

Prefer compound subcomponents instead of one oversized prop bag. Export a small, documented API for your design system.

Reset to indeterminate spinners when duration is unknown.

Common use cases

  • File uploads with byte counts and ETA copy.
  • Checkout steps with weighted segments.
  • Background sync jobs in admin consoles.
  • Onboarding checklists tied to measurable tasks.

Accessibility

Keyboard order, focus rings, and ARIA attributes should match production usage. Test with your supported browsers and assistive technologies when semantics are non-trivial.

This preview page exposes a single h1 in the hero for a clean outline.

Next.js integration notes

Colocate examples under the App Router, keep server and client boundaries explicit, and avoid pulling interactive overlays into unexpected server layouts.

Set NEXT_PUBLIC_SITE_URL so canonical and Open Graph URLs resolve on deploy.

FAQ

Does the Progress component work with Next.js App Router?

Yes. Import it like any other React component; keep interactive subtrees in client components when you need hooks or browser APIs, and leave static structure in server components where possible.

Can I customize progress with Tailwind CSS?

Zentauri UI exposes class-friendly variants and slots so you can extend styles with Tailwind utilities without fighting inline styles.

Is this Progress implementation accessible by default?

Primitives follow sensible defaults, but accessibility depends on how you label controls, manage focus, and wire keyboard handlers in your app. Validate critical flows with keyboard-only use and screen readers.