JSFiddle - React, Tailwind, and code Playground

by Shang-De You

HTML

<svg width="300" height="300" version="1.1" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <marker id="arrow"
      markerUnits="strokeWidth"
      markerWidth="12"
      markerHeight="12"
      viewBox="0 0 12 12"
      refX="6"
      refY="6"
      orient="auto">
      <path d="M2,2 L10,6 L2,10 L6,6 L2,2" style="fill: black"></path>
    </marker>
  </defs>
  <line x1="0" y1="0" x2="200" y2="50" stroke="red" stroke-width="2" marker-end="url(#arrow)"/>
</svg>