JSFiddle - React, Tailwind, and code Playground

HTML

<div id="circle">
    
</div>

CSS

#circle {
    width: 112px;
    height: 112px;
    background: #333333;
    
       -moz-border-radius: 56px;
    -webkit-border-radius: 56px;
            border-radius: 56px;
    
    border: 5px dashed red;
}