import React from 'react'; import { Tabs as TabsPrimitive, TabsProps as TabsPropsPrimitive } from '@modulz/primitives'; export type TabsProps = TabsPropsPrimitive & { orientation?: 'horizontal' | 'vertical'; } type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : unknown; type PrimitiveRefType = ExtractRefType export const Tabs = React.forwardRef((props, ref) => { return ( ); });