mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
18 lines
653 B
Svelte
18 lines
653 B
Svelte
<script lang="ts">
|
|
import { ExpandableTile } from "../types";
|
|
</script>
|
|
|
|
<ExpandableTile>
|
|
<div slot="above" style="height: 10rem">Above the fold content here</div>
|
|
<div slot="below" style="height: 10rem">Below the fold content here</div>
|
|
</ExpandableTile>
|
|
|
|
<ExpandableTile expanded>
|
|
<div slot="above" style="height: 10rem">Above the fold content here</div>
|
|
<div slot="below" style="height: 10rem">Below the fold content here</div>
|
|
</ExpandableTile>
|
|
|
|
<ExpandableTile light>
|
|
<div slot="above" style="height: 10rem">Above the fold content here</div>
|
|
<div slot="below" style="height: 10rem">Below the fold content here</div>
|
|
</ExpandableTile>
|