ProgressSpinner is a process status indicator.
import { ProgressSpinnerModule } from 'primeng/progressspinner';
An infinite spin animation is displayed by default.
<p-progressSpinner ariaLabel="loading" />
ProgressSpinner can be customized with styling property like styleClass, strokeWidth and fill.
<p-progressSpinner
styleClass="w-4rem h-4rem"
strokeWidth="8"
fill="var(--surface-ground)"
animationDuration=".5s" />
Following is the list of structural style classes, for theming classes visit theming page.
Name | Element |
---|---|
p-progress-spinner | Container element. |
p-progress-spinner-svg | SVG element. |
p-progress-spinner-circle | Circle element. |
ProgressSpinner components uses progressbar role. Value to describe the component can be defined using aria-labelledby and aria-label props.
<p-progressSpinner aria-label="Loading"></p-progressSpinner>
Component does not include any interactive elements.
API defines helper props, events and others for the PrimeNG ProgressSpinner module.
ProgressSpinner is a process status indicator.
Defines the input properties of the component.