mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
11 lines
227 B
Svelte
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>
|