@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
15 lines • 625 B
TypeScript
/// <reference types="react" />
import { MenuGroupProps } from '../Menu';
/**
* See the MenuGroup section of the Menu documentation for additional props that may be passed.
*/
export interface DropdownGroupProps extends Omit<MenuGroupProps, 'ref'> {
/** Anything which can be rendered in a dropdown group. */
children: React.ReactNode;
/** Classes applied to root element of dropdown group */
className?: string;
/** Label of the dropdown group */
label?: React.ReactNode;
}
export declare const DropdownGroup: React.FunctionComponent<DropdownGroupProps>;
//# sourceMappingURL=DropdownGroup.d.ts.map