@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 535 B
TypeScript
import * as React from 'react';
export interface OverflowMenuControlProps extends React.HTMLProps<HTMLDivElement> {
/** Any elements that can be rendered in the menu */
children?: any;
/** Additional classes added to the OverflowMenuControl */
className?: string;
/** Triggers the overflow dropdown to persist at all viewport sizes */
hasAdditionalOptions?: boolean;
}
export declare const OverflowMenuControl: React.FunctionComponent<OverflowMenuControlProps>;
//# sourceMappingURL=OverflowMenuControl.d.ts.map