JSFiddle - React, Tailwind, and code Playground

HTML

<div id="fakeBody" class="wait">
    <table>
        <tr class="pointer">
            <td>Yup, a pointer row normally...</td>
        </tr>
    </table>            
</div>

CSS

.pointer {
    cursor: pointer;
}

.wait {
    cursor: wait !important;
}

#fakeBody {
    height: 200px;
    background-color: lightpink;
}

table {
    padding-top: 20px;
    margin-left: 20px;
    width: 100%
}

td {
    height: 40px;    
    background-color: white;
}