mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
25 lines
411 B
Svelte
25 lines
411 B
Svelte
<script lang="ts">
|
|
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"
|
|
/>
|