@heroui/navbar
Version:
A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.
10 lines (7 loc) • 382 B
text/typescript
import * as _heroui_system from '@heroui/system';
import { HTMLHeroUIProps } from '@heroui/system';
interface NavbarBrandProps extends HTMLHeroUIProps<"div"> {
children?: React.ReactNode | React.ReactNode[];
}
declare const NavbarBrand: _heroui_system.InternalForwardRefRenderFunction<"div", NavbarBrandProps, never>;
export { type NavbarBrandProps, NavbarBrand as default };