JSFiddle - React, Tailwind, and code Playground
HTML
<div class="figure"></div>
CSS
.figure:before{
content:"";
display:block;
position:absolute;
left:0;
right:0;
top:0;
height:50px;
border-bottom-left-radius:40px;
border-bottom-right-radius:40px;
border:1px solid #333;
border-top-color:transparent;
background: green;
}