Progress Bars
Svelte ComponentAn indicator showing the progress or completion of a task.
Import
Package
Source
Doc
Examples
Getting Started
This component is treated as an ARIA progressbar.
<ProgressBar label="Progress Bar" value={50} max={100} />
Indeterminate Mode
The value
property must be removed or set to undefined
.
<ProgressBar />