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