I need to design a polygon with a rounded corner, similar to the image in this https://i.sstatic.net/RzLPu.png. To achieve this, I want the last part (35% 100%) to have a border-radius of 30px. Any suggestions on how I can accomplish this? Thank you in advance for your advice.
img {
clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
}
<div class="parent">
<img src="assets/img/img-1.jpg" alt="">
</div>