JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://chrismichaelscott.github.io/fraphael/downloads/raphael-with-fraphael.min.js"></script>
<div id="test"/>

JavaScript

var paper = Raphael("test");

paper.path("M210,10s55,25 40,180Z")
    .attr({fill: "#eee", stroke: "#ddd"})
    .emboss(5);