JSFiddle - React, Tailwind, and code Playground
HTML
<ul>
<li>dfdfsd</li>
<li>dfdfsd</li>
<li>dfdfsd</li>
<li>dfdfsd</li>
<li>dfdfsd</li>
</ul>
CSS
ul {
list-style: none;
}
ul li {
position:relative;
margin: 0;
padding-left: 1.4em;
}
ul li:before {
content: '\2014';
position: absolute;
left: 0;
top: 0;
}