JSFiddle - React, Tailwind, and code Playground

by jlratwil

HTML

<div class = "cont">
    <span class = "arrow">&#8658</span>
</div>

CSS

.cont{width:25px;
     cursor:pointer;
     border:solid 1px gray;
    height:12px;
    border-radius:10px;
    text-align:center;
}

.arrow{
    display: block;
    font-size: 18px;
    line-height: 10px;
}