JSFiddle - React, Tailwind, and code Playground

HTML

<a href="">Нажать</a>

CSS

* {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}
body {
 
}

a {
  display: inline-block;
  padding: 20px 20px 20px 50px;
  background: #f00 url(http://bbqplace.ru/images/ico-money.png) no-repeat 10px center / 30px 30px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
a:hover {
  background-color: #900;
}
a:active {
  background-color: #500;
}