UNPKG

@thi.ng/hiccup-svg

Version:

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

16 lines (15 loc) 245 B
import { fattribs, ff } from "./format.js"; const ellipse = (p, rx, ry, attribs, ...body) => [ "ellipse", fattribs({ ...attribs, cx: ff(p[0]), cy: ff(p[1]), rx: ff(rx), ry: ff(ry) }), ...body ]; export { ellipse };