import type { FC, PropsWithoutRef } from 'react' import type { ExtractProps } from '../types' import { TabList as HeadlessTabList } from '@headlessui/react' import classNames from 'classnames' import { forwardRef } from 'react' export type TabListProps = PropsWithoutRef> export const TabList: FC = forwardRef( ({ className, children, ...props }, ref) => { return ( {children} ) }, )