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