How do I properly display the profile picture inside this shape instead of making a cut of the image?
<Svg
height="300"
width="300"
>
<Defs>
<ClipPath id="clip">
<Path d="M136.5 85 189 136 136.5 187 84 136z" />
</ClipPath>
</Defs>
<Image
x="0"
y="0"
width="100%"
height="100%"
href={{ uri: "https://cdn.business2community.com/wp-content/uploads/2017/08/blank-profile-picture-973460_640.png" }}
clipPath="url(#clip)"
preserveAspectRatio="xMinYMid meet"
/>
</Svg>
Currently it looks like:
But this is a cut of the image instead of 'fitting' it to the shape - I'm trying to achieve a 'cover fit'.