JSFiddle - React, Tailwind, and code Playground

by slace

HTML

<div class="dot">&nbsp;</div>
<div class="dash">&nbsp;</div>

CSS

.dot {
    width: 10px;
    height: 10px;
    background: #000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 50px;
    margin:0px 5px;
}

.dash {
   width: 20px;
   height: 10px;
   margin: 5px 0px;
   background: #000; 
}