mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
24 lines
460 B
Svelte
24 lines
460 B
Svelte
<script>
|
|
import SkeletonPlaceholder from "./SkeletonPlaceholder.svelte";
|
|
</script>
|
|
|
|
<style>
|
|
:global(.my--skeleton__placeholder--small) {
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
|
|
:global(.my--skeleton__placeholder--medium) {
|
|
height: 150px;
|
|
width: 150px;
|
|
}
|
|
|
|
:global(.my--skeleton__placeholder--large) {
|
|
height: 250px;
|
|
width: 250px;
|
|
}
|
|
</style>
|
|
|
|
<div style="height: 250px; width: 250px;">
|
|
<SkeletonPlaceholder {...$$props} />
|
|
</div>
|