JSFiddle - React, Tailwind, and code Playground

HTML

<body>
  <svg id="svgConnections" xmlns="http://www.w3.org/2000/svg" style="width: 300px; height: 120px">
    <defs>
      <linearGradient id="grad1" >
        <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
        <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
      </linearGradient>
    </defs>            
    <path d="M40,40 L100,100 Z" stroke="url(#grad1)" strokeWidth="1px" />
    <path d="M200,100 L140,40 Z" stroke="url(#grad1)" strokeWidth="1px" />
  </svg>
</body>