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
Remoe the value
property or set to undefined
.
<ProgressBar />
<ProgressBar value={undefined} />
Native Alternative
The native progress
element works cross browser, but does not currently support Indeterminate mode when styled.
<progress value={50} max={100} />