JSFiddle - React, Tailwind, and code Playground

by denova

HTML

<div class="bulletfilledcircle"></div>
<div class="bulletline"></div>

CSS

.bulletfilledcircle {
    display: inline-block;
    background-color: #808080;
    width: 4px;
    height: 4px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.bulletline {
    display: inline-block;
    background-color: #808080;
    height: 4px;
    width: 100px;
    
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}