mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* chore(deps-dev): upgrade carbon-components to v10.56.0 * feat(progress-bar): add kind prop * Run "yarn build:docs" * test(progress-bar): assert kind prop
15 lines
257 B
Svelte
15 lines
257 B
Svelte
<script lang="ts">
|
|
import { ProgressBar } from "../types";
|
|
</script>
|
|
|
|
<ProgressBar helperText="Loading..." />
|
|
|
|
<ProgressBar
|
|
kind="inline"
|
|
size="md"
|
|
value="{40}"
|
|
max="{100}"
|
|
labelText="Upload status"
|
|
hideLabel
|
|
helperText="40 MB of 100 MB"
|
|
/>
|