import React from 'react'; import { css } from '@patternfly/react-styles'; import { MenuGroupProps, MenuGroup } from '../Menu'; /** * See the MenuGroup section of the Menu documentation for additional props that may be passed. */ export interface SelectGroupProps extends Omit { /** 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?: string; } export const SelectGroup: React.FunctionComponent = ({ children, className, label, ...props }: SelectGroupProps) => ( {children} ); SelectGroup.displayName = 'SelectGroup';