JSFiddle - React, Tailwind, and code Playground
HTML
<div id='container'>
<div class="label-dot-1">Neato<br/>Neato<br/></div>
<div class="label-dot-1">Neato<br/>Neato<br/></div>
</div>
CSS
#container {
background-color: red;
}
.label-dot-1{
position:relative;
}
.label-dot-1::after {
content:"";
position:absolute;
top:0;
right:0;
bottom:0;
left:0;
margin:auto calc(50% - 10px);
height: 10px;
width: 10px;
border-radius: 50%;
background-color: #66c2a5;
}