import type { FC, PropsWithoutRef } from 'react' import type { ExtractProps } from '../types' import { TabGroup as HeadlessTabGroup } from '@headlessui/react' import { forwardRef } from 'react' export type TabGroupProps = PropsWithoutRef> export const TabGroup: FC = forwardRef(({ children, ...props }, ref) => { return ( {children} ) })