JSFiddle - React, Tailwind, and code Playground
HTML
<a class="button green">
Click me
</a>
CSS
.button {
position: relative;
}
.button:after {
content: "";
width: 30px;
height: 30px;
background:red url("http://www.gentleface.com/i/free_toolbar_icons_16x16_black.png") no-repeat -30px -50px fixed;
top: 10px;
right: 5px;
position: absolute;
display: inline-block;
}