JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <a href="#"></a>
</div>

CSS

div {
     width: 50px;   
     height: 50px;
     border: 1px solid green;
}

a {
     display: block;
     height: 100%;
     background: orange;  
     -moz-border-radius: 50em; 
     -webkit-border-radius: 50em;
     border-radius: 50em;
}

a:hover {
     background: green;   
}