mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
12 lines
294 B
Svelte
12 lines
294 B
Svelte
<script>
|
|
$: props = {
|
|
"aria-label": $$props["aria-label"],
|
|
"aria-labelledby": $$props["aria-labelledby"],
|
|
};
|
|
</script>
|
|
|
|
<nav {...props} class:bx--header__nav="{true}" {...$$restProps}>
|
|
<ul {...props} role="menubar" class:bx--header__menu-bar="{true}">
|
|
<slot />
|
|
</ul>
|
|
</nav>
|