import type { FC, LegacyRef, PropsWithoutRef } from 'react' import type { ExtractProps } from '../types' import { ListboxOptions } from '@headlessui/react' import classNames from 'classnames' import { forwardRef } from 'react' export type SelectOptionsProps = PropsWithoutRef> & { ref?: LegacyRef } const SelectOptions: FC = forwardRef(({ className, ...props }, ref) => { return ( ) }) export default SelectOptions