UNPKG

@heroui/navbar

Version:

A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.

15 lines (12 loc) 479 B
import * as _heroui_system from '@heroui/system'; import { HTMLHeroUIProps } from '@heroui/system'; interface NavbarMenuItemProps extends HTMLHeroUIProps<"li"> { /** * Whether the item is active or not. * @default false */ isActive?: boolean; children?: React.ReactNode; } declare const NavbarMenuItem: _heroui_system.InternalForwardRefRenderFunction<"li", NavbarMenuItemProps, never>; export { type NavbarMenuItemProps, NavbarMenuItem as default };