import * as React from 'react'; export interface FormSelectOptionGroupProps extends Omit, 'disabled'> { /** content rendered inside the Select Option Group */ children?: React.ReactNode; /** additional classes added to the Select Option */ className?: string; /** the label for the option */ label: string; /** flag indicating if the Option Group is disabled */ isDisabled?: boolean; } export const FormSelectOptionGroup: React.FunctionComponent = ({ children = null, className = '', isDisabled = false, label, ...props }: FormSelectOptionGroupProps) => ( {children} ); FormSelectOptionGroup.displayName = 'FormSelectOptionGroup';