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