UNPKG

@blueprintjs/core

Version:
17 lines (16 loc) 601 B
import * as React from "react"; import { Alignment } from "../../common/alignment"; import { HTMLDivProps, IProps } from "../../common/props"; export interface INavbarGroupProps extends IProps, HTMLDivProps { /** * The side of the navbar on which the group should appear. * The `Alignment` enum provides constants for these values. * @default Alignment.LEFT */ align?: Alignment; } export declare class NavbarGroup extends React.PureComponent<INavbarGroupProps, {}> { static displayName: string; static defaultProps: INavbarGroupProps; render(): JSX.Element; }