JSFiddle - React, Tailwind, and code Playground
HTML
<div class="J_resize resize"></div>
CSS
.resize{width:50px;height:50px;border:2px solid blue;}
.resize .ui-resizable-s{background:blue;}
.resize .ui-resizable-s2{width:10px;height:10px;background:green;bottom:0;right:0;}
JavaScript
$(".J_resize").resizable({
handles:"e,s",
create:function(){
$(this).find(".ui-resizable-e").addClass("ui-resizable-s ui-resizable-s2").removeClass("ui-resizable-e");
}
});