mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
24 lines
No EOL
404 B
Text
24 lines
No EOL
404 B
Text
<script>
|
|
import { SkeletonText } from "carbon-components-svelte";
|
|
import Preview from "../../components/Preview.svelte";
|
|
</script>
|
|
|
|
## Default
|
|
|
|
<SkeletonText />
|
|
|
|
## Heading variant
|
|
|
|
<SkeletonText heading />
|
|
|
|
## Paragraph variant
|
|
|
|
<SkeletonText paragraph />
|
|
|
|
## Paragraph with custom line count
|
|
|
|
<SkeletonText paragraph lines={8} />
|
|
|
|
## Paragraph with max width
|
|
|
|
<SkeletonText paragraph width="50%" /> |