UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

11 lines 491 B
import * as React from 'react'; export interface OverflowMenuItemProps extends React.HTMLProps<HTMLDivElement> { /** Any elements that can be rendered in the menu */ children?: any; /** Additional classes added to the OverflowMenuItem */ className?: string; /** Modifies the overflow menu item visibility */ isPersistent?: boolean; } export declare const OverflowMenuItem: React.FunctionComponent<OverflowMenuItemProps>; //# sourceMappingURL=OverflowMenuItem.d.ts.map