mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
23 lines
No EOL
582 B
Text
23 lines
No EOL
582 B
Text
<script>
|
|
import { InlineLoading } from "carbon-components-svelte";
|
|
import Preview from "../../components/Preview.svelte";
|
|
</script>
|
|
|
|
## Default
|
|
|
|
<InlineLoading />
|
|
|
|
## With description
|
|
|
|
<InlineLoading description="Loading metrics..." />
|
|
|
|
## Status states
|
|
|
|
<InlineLoading status="active" description="Submitting..." />
|
|
<InlineLoading status="inactive" description="Cancelling..." />
|
|
<InlineLoading status="finished" description="Success" />
|
|
<InlineLoading status="error" description="An error occurred" />
|
|
|
|
## UX example
|
|
|
|
<FileSource src="/framed/InlineLoading/InlineLoadingUx" /> |