JSFiddle - React, Tailwind, and code Playground

HTML

<div class="drag"></div>

CSS

.drag{
    padding: 40px;
    background: #000;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.drag:active{
        cursor: grabbing;
        cursor: -moz-grabbing;
        cursor: -webkit-grabbing;
    }