Skip to content

NavigationMenu

Horizontal site nav with dropdown submenus. Submenus inherit the fullMenu keyboard behavior for free.

Example

<NavigationMenu
  label="Docs"
  items={[
    { label: "Overview", href: "/" },
    {
      label: "Guides",
      children: [
        { label: "Theming guide", href: "/guides/theming" },
        { label: "All components", href: "/components" },
      ],
    },
  }}
/>

Props

PropTypeDefaultDescription
itemsArray-Links; children makes a dropdown.
labelstringSiteNav landmark name.

Accessibility