@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
10 lines • 538 B
TypeScript
/// <reference types="react" />
import { DropdownItemProps } from '../Dropdown';
export interface OverflowMenuDropdownItemProps extends Omit<DropdownItemProps, 'ref'> {
/** Indicates when a dropdown item shows and hides the corresponding list item */
isShared?: boolean;
/** Identifies the component in the dropdown onSelect callback */
itemId?: string | number;
}
export declare const OverflowMenuDropdownItem: React.FunctionComponent<OverflowMenuDropdownItemProps>;
//# sourceMappingURL=OverflowMenuDropdownItem.d.ts.map