JSFiddle - React, Tailwind, and code Playground

by rafmaz

HTML

<div>

        <button onclick="alert('sss')" class="disabled" type="sub" >Blue Button</button><br /><br />
    </div>

CSS

.disabled{
  cursor: not-allowed;
  pointer-events: none;
  border: none;
  background: transparent;
}