import React from "react"; export const SVG_GAP = 9; export const SVG_SIZE = 300; export const SVG_ROUNDNESS = 2; export function GridLayoutIcon() { // The width/height of each square const wh = (SVG_SIZE - (SVG_GAP * 2)) / 3; // The x/y positions of each square const p1 = 0; const p2 = wh + SVG_GAP; const p3 = p2 * 2; return ( ); }