JSFiddle - React, Tailwind, and code Playground
HTML
<button class="back clickable" aria-label="Back" onclick="javascript:history.back();">Back</button>
SCSS
$white = #ffffff;
button {
background:transparent;
border: none;
padding: 0;
margin: 0;
line-height: 1;
font-size: 12px;
cursor: pointer;
}
.back {
background: none;
background-image: url("http://i.stack.imgur.com/DaQcG.png"), url("http://i.stack.imgur.com/2WA5B.png"), url("http://i.stack.imgur.com/6m2HC.png");
background-position: 14px 0, 100% 0, 0 0;
background-repeat: repeat-x, no-repeat, no-repeat;
border-right: 8px transparent;
border-left: 14px transparent;
color: $white;
height: 28px;
padding: 5px;
}