JSFiddle - React, Tailwind, and code Playground

by Alexander Lashchevsky

HTML

<button class="button disabled">Click me!</button>

CSS

.button {
  color: blue;
}
.button:not(.disabled):hover {
  color: red;
}