JSFiddle - React, Tailwind, and code Playground

by rhelminen

HTML

<div class="hover-cursor" style="display: flex; padding: 1rem; background-color: green; width: 15rem; height: 8rem;">
  <div class="cursor-wait" style="background-color: red; width: 5rem; height: 5rem;"></div>
</div>

CSS

.cursor-wait {
  cursor: wait;
}
.hover-cursor:hover {
  cursor: pointer;
}