import { ReactNode } from 'react'; type Props = { /** * One or more SelectList.Option components. */ children: ReactNode; /** * Used to disable the entire group of options. */ disabled?: boolean; /** * The label for the group. Don't forget to localize! */ label: string; }; /** * Use [SelectList.Group](https://gestalt.pinterest.systems/selectlist#SelectList.Group) to group a subset of the options within SelectList. */ export default function SelectListGroup({ children, disabled, label }: Props) { return ( {children} ); } SelectListGroup.displayName = 'SelectList.Group';