JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent-div">
<img class="image" src="https://picsum.photos/100">
<p>Some text</p>
</div>
CSS
.parent-div {
background-color: gray;
border-radius: 20px;
overflow: hidden;
}
.image {
width: 100%
}