import React from 'react'; import { Arrow as ArrowPrimitive, ArrowProps as ArrowPropsPrimitive } from '@modulz/primitives'; export type ArrowProps = ArrowPropsPrimitive type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : unknown; type PrimitiveRefType = ExtractRefType export const Arrow = React.forwardRef((props, ref) => { return ( ); });