JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrap">
<div class="pie"></div>
</div>
CSS
.wrap {
position: repative;
padding: 30%;
width: 0;
height: 0;
margin: auto;
border-radius: 100%;
overflow: hidden;
}
.pie {
width: 0px;
height: 0px;
left: 50%;
top: 50%;
margin: -500px 0 0 -500px;
border: 500px solid transparent;
border-bottom-color: red;
}