JSFiddle - React, Tailwind, and code Playground
HTML
<button>Help!</button>
CSS
button {
width: 100px;
height: 50px;
border: 1px solid gray;
border-radius: 4px;
background: white;
cursor: pointer;
}
button:hover, button:focus {
background: gray;
}