• Docs
  • Components
  • Progressbar

Popover - Aspect UI

The Popover component displays floating content anchored to a trigger element. It supports customizable positioning, animations, and dismiss behaviors for tooltips, menus, and more.

Table of Contents#

ProgressBar Props#


PropTypeDefaultDescription
valuenumber-Current progress value.
contentPositionleft right'right'Position of the content (label) relative to the progress bar fill.
durationnumber2Duration of the progress fill animation in seconds.
animateOnLoadbooleantrueWhether to animate the progress fill when the component mounts.
animateOnVisiblebooleanfalseWhether to animate the progress fill when the component becomes visible in viewport.
minnumber0Minimum value of the progress bar.
maxnumber100Maximum value of the progress bar.
classNamestring''Additional CSS classes for the root progress bar container.
containerClassNamestring''Additional CSS classes for the inner container wrapping the progress fill.
fillClassNamestring''Additional CSS classes for the progress fill element.
contentClassNamestring''Additional CSS classes for the content (label) inside the progress bar.
childrenReactNode-Optional content inside the progress bar, typically a label or percentage.
...restReact.HTMLAttributes<HTMLDivElement>-Any other native HTML div attributes passed to the root container.