carbon-components-svelte/src/UIShell/Content.svelte
2020-09-04 16:35:49 -07:00

11 lines
227 B
Svelte

<script>
/**
* Specify the id for the main element
* @type {string} [id="main-content"]
*/
export let id = "main-content";
</script>
<main id="{id}" class:bx--content="{true}" {...$$restProps}>
<slot />
</main>