API Progress
value: number = undefined
Progress valueany numbermax: number = 0
Progress maxany numbercolor: Colors = "light"
Progress colorgray | light | primary | secondary | success | errorinvert: boolean = false
Progress inverttrue | false
The Progress indicates the progress completion of a task.
If
value === null || undefinedit have indeterminate/loading state
<script>
import { Progress } from 'svelte-spectre'
</script>
<Progress value="75" max="100" color="primary" />
<Progress value="50" max="100" color="warning" />
<Progress value="25" max="100" color="success" />
<Progress color="error" />