Progress Radials
Svelte ComponentDisplays a radial indicator showing the progress or completion of a task.
Import
Package
Source
Doc
WAI-ARIA
Examples
Determinate
Indeterminate
Primary
Secondary
Tertiary
Success
Warning
Error
Getting Started
This component is treated as an ARIA meter.
let value: number = 50; // %
<ProgressRadial {value}>{value}%</ProgressRadial>
Indeterminate
Remove the value
property or set to undefined
.
<ProgressRadial />
<ProgressRadial value={undefined} />