JSFiddle - React, Tailwind, and code Playground

by Riskbreaker

HTML

<button class="btn"><div>Create Advert HELLO YOU ALL <span aria-hidden="true" data-icon="+"></span></div></button>

SCSS

.btn {
    width: 300px;
    margin: 0;
    padding: 3px 6px;
    vertical-align: middle;
    border: none;
    background-color: #535B99;
    color: white;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
    [data-icon] {
       float:right;
        display: block;
        margin-left: 10px;
    widhth: 10px; height: 10px;
        &:before { content: attr(data-icon); }
    }
}

div {display: block;}