Progress Bars

Svelte Component

An indicator showing the progress or completion of a task.

Examples

Getting Started

This component is treated as an ARIA progressbar.

html
<ProgressBar label="Progress Bar" value={50} max={100} />

Indeterminate Mode

The value property must be removed or set to undefined.

html
<ProgressBar />