JSFiddle - React, Tailwind, and code Playground

by ksumarine

HTML

<svg viewBox="0,0,100,100">
  <g>
    <rect fill="blue" width="20" height="20"></rect>
  </g>
  <g>
    <rect fill="green" width="20" height="20"></rect>
  </g>
</svg>

CSS

svg {
  background-color:red;
}

JavaScript

let svg = document.querySelector('svg');