import React from 'react'; import { Group } from 'react-aria-components'; import classNames from 'classnames'; import type { Size } from '../../../types'; interface MultiSelectContentProps extends React.PropsWithChildren { id?: string; width?: Size | 'auto'; isDisabled?: boolean; 'aria-label'?: string; } export const MultiSelectContent: React.FC = ({ id, width, children, isDisabled, 'aria-label': ariaLabel, ...rest }) => { return ( {children} ); };