mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
16 lines
289 B
Svelte
16 lines
289 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"
|
|
/>
|