1import React from 'react'; 2import {Image, ImageProps} from 'react-native'; 3 4interface IImageProps extends ImageProps { 5 uri?: string | null; 6 emptySrc: any; 7} 8export default function (props: Omit<IImageProps, 'source'>) { 9 const {uri, emptySrc} = props; 10 const source = uri 11 ? { 12 uri, 13 } 14 : emptySrc; 15 return <Image {...props} source={source} />; 16} 17