You're going to have to import Image from the react-native package like so then use it:
import { Image } from 'react';
<Image source={{uri: 'https://image-souce.com/awesomeImage'}} />
You can also use a local image with a slightly different syntax but same logic like so:
import { Image...
<Image style={[this.props.imageStyle]}
source={this.props.imagePath
? this.props.imagePath
: require('../theme/images/resource.png')}
/>
If the path is available in imagePath then it will be assigned to source else the default image path will be assigned.