import { View, Label, Path } from "./evg_types"; /** * Vector paths. Every shape below is the SAME path data in all three targets — * real vector operators in the PDF, an inline in the HTML, and an * anti-aliased scanline fill in the PNG — because they share one path parser, * one viewBox transform and, on the raster side, the same rasterizer that * paints the glyphs on this page. * * Nothing here carries a colour or a size. `d` and `viewBox` are geometry, not * appearance: the theme decides how large a shape is drawn and what colour it * is filled with, and the shape does not change when it moves between themes * or between targets. */ function render() { return ( ); }