Progress Radials
Displays a radial indicator showing the progress or completion of a task.
import { ProgressRadial } from '@skeletonlabs/skeleton';
Determinate
Indeterminate
Primary
Secondary
Tertiary
Success
Warning
Error
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} />