Generating SVG with React 

function TextBox({x, y, width=200, height=120, children}) {
  return <g className="text-box">
    <rect x="0" y="0" width={width} height={height} />
  </g>;
}