Progress Radials

Svelte Component

Displays a radial indicator showing the progress or completion of a task.

Examples

50%

Indeterminate

Remove the value property to set to indeterminate mode.

Getting Started

ts
let value: number = 50; // %
html
<ProgressRadial {value}>{value}%</ProgressRadial>