JSFiddle - React, Tailwind, and code Playground

by saxxi

HTML

<div id="canvas" style="width:400px; height:400px;"></div>
<script>
    var paper = Raphael("canvas", 400, 400);
    paper.rect(0, 0, 114, 40.6).attr({
        fill: "url(https://www.google.com/logos/2011/twain11-sr.png)"
    }).attr({
        stroke: ''
    });
</script>