SVG Notes: Line & Rect Reference
rect -> Rectangle
Basic Rectangle
<rect x="10" y="10" width="50" height="30" />
x, y = top-left corner position
width, height = dimensions
Rounded Corners
<rect x="10" y="10" width="50" height="30" rx="5" ry="5" />
rx = horizontal corner radiu...
tigerabrodi.blog1 min read