import React from "react"; import {SVG_GAP, SVG_ROUNDNESS, SVG_SIZE} from "spotlight/feed-editor/components/icons/GridLayoutIcon"; export function HighlightLayoutIcon() { // The width/height of the small square const wh = (300 - (SVG_GAP * 2)) / 3; // The width/height of the big square const wh2 = (wh * 2) + SVG_GAP; // The x/y positions of each square const p1 = 0; const p2 = wh + SVG_GAP; const p3 = p2 * 2; return ( ); }