UNPKG

@patternfly/react-core

Version:

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

15 lines 610 B
/// <reference types="react" /> import { MenuGroupProps } from '../Menu'; /** * See the MenuGroup section of the Menu documentation for additional props that may be passed. */ export interface SelectGroupProps extends Omit<MenuGroupProps, 'ref'> { /** Anything which can be rendered in a select group */ children: React.ReactNode; /** Classes applied to root element of select group */ className?: string; /** Label of the select group */ label?: React.ReactNode; } export declare const SelectGroup: React.FunctionComponent<SelectGroupProps>; //# sourceMappingURL=SelectGroup.d.ts.map