JSFiddle - React, Tailwind, and code Playground

by sstur

HTML

<i></i>

CSS

i {
    display: block;
    margin: 10px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, .8);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}
i:before {
    content: "\2699";
    font-style: normal;
    display: block;
    position: absolute;
    top: 1px;
    left: 2px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}