JSFiddle - React, Tailwind, and code Playground

by zoldello

HTML

<div class="pie"></div>

CSS

.pie {
  width: 50px;
  height: 50px;
  background: conic-gradient(
    white 120deg,
    green 120deg 240deg,
    white 240deg
  );
  border-radius: 50%
}