JSFiddle - React, Tailwind, and code Playground
HTML
<div class="circular">
<img src="https://img.europapress.es/fotoweb/fotonoticia_20190109103237_640.jpg">
</div>
CSS
.circular {
width: 200px;
height: 200px;
border-radius: 100%;
-webkit-border-radius: 50%;
-moz-border-radius: 100%;
overflow:hidden;
}
.circular img{
width:100%;
height: auto;
}