mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
16 lines
293 B
Svelte
16 lines
293 B
Svelte
<script lang="ts">
|
|
import { ProgressBar } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<ProgressBar helperText="Loading..." />
|
|
|
|
<ProgressBar
|
|
kind="inline"
|
|
size="md"
|
|
value="{40}"
|
|
max="{100}"
|
|
labelText="Upload status"
|
|
hideLabel
|
|
helperText="40 MB of 100 MB"
|
|
status="finished"
|
|
/>
|