import React from 'react'; import { Input as InputPrimitive, InputProps as InputPropsPrimitive } from '@modulz/primitives'; export type InputProps = InputPropsPrimitive type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : any; type PrimitiveRefType = ExtractRefType export const Input = React.forwardRef((props, ref) => { return ( ); });