carbon-components-svelte/src/UIShell/Content.svelte
2020-11-04 06:04:25 -08:00

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>