mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
16 lines
307 B
Text
16 lines
307 B
Text
---
|
|
layout: recipe
|
|
---
|
|
|
|
<script>
|
|
import { AspectRatio, Tile, Column } from "carbon-components-svelte";
|
|
import Preview from "../../components/Preview.svelte";
|
|
</script>
|
|
|
|
## Tile (16x9 ratio)
|
|
|
|
<Column lg={8}>
|
|
<AspectRatio ratio="16x9">
|
|
<Tile style="height: 100%">Content</Tile>
|
|
</AspectRatio>
|
|
</Column>
|