JSFiddle - React, Tailwind, and code Playground

by agib

HTML

<div class="box grabbing"></div>

CSS

.box {
  width: 10rem;
  height: 10rem;
  background-color: dodgerblue;
}
.grabbing {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}