mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
20 lines
376 B
Svelte
20 lines
376 B
Svelte
<script lang="ts">
|
|
import { Grid, Row, Column } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<Grid>
|
|
<Row>
|
|
<Column
|
|
aspectRatio="2x1"
|
|
style="outline: 1px solid var(--cds-interactive-04)"
|
|
>
|
|
2x1
|
|
</Column>
|
|
<Column
|
|
aspectRatio="2x1"
|
|
style="outline: 1px solid var(--cds-interactive-04)"
|
|
>
|
|
2x1
|
|
</Column>
|
|
</Row>
|
|
</Grid>
|