UNPKG

@blueprintjs/core

Version:
20 lines (19 loc) 754 B
import * as React from "react"; import { HTMLDivProps, IProps } from "../../common/props"; import { NavbarDivider } from "./navbarDivider"; import { NavbarGroup } from "./navbarGroup"; import { NavbarHeading } from "./navbarHeading"; export { INavbarDividerProps } from "./navbarDivider"; export interface INavbarProps extends IProps, HTMLDivProps { /** * Whether this navbar should be fixed to the top of the viewport (using CSS `position: fixed`). */ fixedToTop?: boolean; } export declare class Navbar extends React.PureComponent<INavbarProps, {}> { static displayName: string; static Divider: typeof NavbarDivider; static Group: typeof NavbarGroup; static Heading: typeof NavbarHeading; render(): JSX.Element; }