JSFiddle - React, Tailwind, and code Playground

HTML

<a href="/" class="button">
  Button with a long multiline label
  <span class="icon">&gt;</span>
</a>

CSS

.button {
  box-sizing: border-box;
  position: relative;
  width: 240px;
  height: 100px;
  padding: 0 20px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  
  text-decoration: none;
  text-align: center;
  font: 16px arial, sans-serif;
  font-weight: bold;
  color: #595959;
  
  display: flex;
  align-items: center;
  justify-content: center;
}
a .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  display: flex;
  align-items: center;
}