@blueprintjs/core
Version:
Core styles & components
20 lines (19 loc) • 613 B
TypeScript
import * as React from "react";
import { Props } from "../../common/props";
export declare type MenuDividerProps = IMenuDividerProps;
/** @deprecated use MenuDividerProps */
export interface IMenuDividerProps extends Props {
/** This component does not support children. */
children?: never;
/** Optional header title. */
title?: React.ReactNode;
}
/**
* Menu divider component.
*
* @see https://blueprintjs.com/docs/#core/components/menu.menu-divider
*/
export declare class MenuDivider extends React.Component<MenuDividerProps> {
static displayName: string;
render(): JSX.Element;
}