feat(progress-bar): add ProgressBar

This commit is contained in:
Eric Y Liu 2021-06-26 16:13:54 -07:00
commit 5fcecda4b4
11 changed files with 280 additions and 3 deletions

View file

@ -0,0 +1,25 @@
<script>
import { ProgressBar } from "../types";
</script>
<ProgressBar helperText="Loading..." />
<ProgressBar
value="{40}"
labelText="Upload status"
helperText="40 MB of 100 MB"
/>
<ProgressBar
value="{40}"
max="{200}"
labelText="Upload status"
helperText="40 MB of 100 MB"
/>
<ProgressBar
hideLabel
value="{40}"
labelText="Upload status"
helperText="40 MB of 100 MB"
/>