mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
26 lines
664 B
Svelte
26 lines
664 B
Svelte
<script lang="ts">
|
|
import {
|
|
StructuredList,
|
|
StructuredListBody,
|
|
StructuredListHead,
|
|
StructuredListCell,
|
|
StructuredListRow,
|
|
} from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<StructuredList>
|
|
<StructuredListHead>
|
|
<StructuredListRow head>
|
|
<StructuredListCell head>
|
|
<div data-testid="custom-header">Custom Header</div>
|
|
</StructuredListCell>
|
|
</StructuredListRow>
|
|
</StructuredListHead>
|
|
<StructuredListBody>
|
|
<StructuredListRow>
|
|
<StructuredListCell>
|
|
<div data-testid="custom-content">Custom Content</div>
|
|
</StructuredListCell>
|
|
</StructuredListRow>
|
|
</StructuredListBody>
|
|
</StructuredList>
|