JSFiddle - React, Tailwind, and code Playground
HTML
<div id="outer-circle">
<div id="inner-circle">
<span id="inside-content"></span>
</div>
</div>
CSS
#outer-circle {
height: 18px;
width: 18px;
background-color: green;
border-radius: 50%;
display:absolute;
cursor: pointer;
}
#inner-circle {
background-color:green;
border:1px solid black;
height:100px;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
width:100px;
}