View style:
export const ImageView = styled.View({
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'red',
});
import svg file:
import MyImage from '../../assets/myImage.svg';
Render usage:
<ImageView>
<MyImage width={330} height={225} />
</ImageView>
The render result is not centered: