UNPKG

@thi.ng/hiccup-svg

Version:

SVG element functions for @thi.ng/hiccup & related tooling

14 lines (13 loc) 223 B
import { fattribs, fpoints } from "./format.js"; const polyline = (pts, attribs, ...body) => [ "polyline", fattribs({ fill: "none", points: fpoints(pts), ...attribs }), ...body ]; export { polyline };