package.src.components.OverflowMenu.OverflowMenuControl.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react-core Show documentation
Show all versions of react-core Show documentation
This library provides a set of common React components for use with the PatternFly reference implementation.
The newest version!
import * as React from 'react';
import { css } from '@patternfly/react-styles';
import styles from '@patternfly/react-styles/css/components/OverflowMenu/overflow-menu';
import { OverflowMenuContext } from './OverflowMenuContext';
export interface OverflowMenuControlProps extends React.HTMLProps {
/** 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 const OverflowMenuControl: React.FunctionComponent = ({
className,
children,
hasAdditionalOptions,
...props
}: OverflowMenuControlProps) => (
{(value) =>
(value.isBelowBreakpoint || hasAdditionalOptions) && (
{' '}
{children}{' '}
)
}
);
OverflowMenuControl.displayName = 'OverflowMenuControl';