JSFiddle - React, Tailwind, and code Playground

HTML

<svg version="1.1" baseProfile="full" width="200" height="190" xmlns="http://www.w3.org/2000/svg">
  
  <defs>  
    <clipPath id="circle">  
       <circle cx="50" cy="45" r="40" stroke="green" fill="transparent" stroke-width="5"/>
    </clipPath>  
  </defs>
  
  <svg clip-path="url(#circle)">
    <rect x="0" y="0" width="100" height="27" fill="red" />
    <rect x="0" y="27" width="100" height="27" fill="blue" />
    <rect x="0" y="54" width="100" height="27" fill="yellow" />
  </svg>
</svg>