JSFiddle - React, Tailwind, and code Playground
HTML
<button class="download-button">Download</button>
CSS
.download-button {
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
border: none;
border-radius: 5px;
color: #000;
background-color: #10cfc9;
}
.download-button:hover {
background-color: #0056b3;
}