mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 03:01:25 +00:00
8 lines
179 B
Svelte
8 lines
179 B
Svelte
<script>
|
|
/** Specify the id for the main element */
|
|
export let id = "main-content";
|
|
</script>
|
|
|
|
<main id="{id}" class:bx--content="{true}" {...$$restProps}>
|
|
<slot />
|
|
</main>
|