no hover

by epinapala

HTML

<button class="button" style="cursor: pointer;"> TestTestTestTest <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.93 30.26" class="btn_arrow"><polyline vector-effect="non-scaling-stroke" class="btn_arrow_svg" points="23.16 29.55 37.52 15.13 23.16 0.7"></polyline>
<line vector-effect="non-scaling-stroke" class="btn_arrow_svg" x1="37.51" y1="15.13" y2="15.13"></line></svg></button>

CSS

.button {
  border: solid 2px black;
  background: white;
  height: 50px;
  border-radius: 5px;
  font-size: 25px;
}

.btn_arrow {
  stroke: black;
  display: inline-block;
  height: 18px;
  width: 18px;
  margin-left: 4px;
  position: relative;
  top: 0.05em;
}

.btn_arrow_svg {
  fill: none;
  stroke-miterlimit: 0;
  stroke-width: 2px;
}