JSFiddle - React, Tailwind, and code Playground

HTML

<button>
    <i></i>
    <span>Text</span>
</button>

CSS

button {
    display: flex;
    display: -moz-box;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    
    width: 120px;
    height: 80px;
}

i {
    width: 12px;
    text-align: center;
    font-size: 22px;
}

i:before {
    content: "\2193";
    margin-right: 10px;
}

span {
    font-size: 16px;
    margin-right: 10px;
}