@breakaway/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
12 lines • 524 B
TypeScript
import React from 'react';
import { MenuGroupProps } from '../../../components/Menu';
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?: string;
}
export declare const DropdownGroup: React.FunctionComponent<DropdownGroupProps>;
//# sourceMappingURL=DropdownGroup.d.ts.map