carbon-components-svelte/src/UIShell/GlobalHeader/HeaderNav.svelte
2020-09-24 10:50:34 -05:00

17 lines
345 B
Svelte

<script>
/**
* Specify the ARIA label for the nav
* @type {string} [ariaLabel]
*/
export let ariaLabel = undefined;
</script>
<nav aria-label="{ariaLabel}" class:bx--header__nav="{true}" {...$$restProps}>
<ul
role="menubar"
aria-label="{ariaLabel}"
class:bx--header__menu-bar="{true}"
>
<slot />
</ul>
</nav>