ProgressSpinner is a process status indicator.
import { ProgressSpinnerModule } from 'primeng/progressspinner';
An infinite spin animation is displayed by default.
<p-progressSpinner></p-progressSpinner>
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"></p-progressSpinner>
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.