JSFiddle - React, Tailwind, and code Playground

HTML

<li class="draggable" title="Text Box">
    <img class="palette-component-icon" src="http://placekitten.com/21/18" />Text Box</li>

CSS

.draggable {
    margin-bottom: 10px;
    padding: 5px;
    list-style-type: none;
    background-color: #3498DB;
    border: 1px solid #2894dc;
    font-weight: bold;
    cursor: pointer;
    color: #FFF;
}
.draggable img{
    float:left;
    padding-right:5px;
}