UNPKG

@thi.ng/hiccup-svg

Version:

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

15 lines (14 loc) 219 B
import { fattribs, ff } from "./format.js"; const circle = (p, r, attribs, ...body) => [ "circle", fattribs({ ...attribs, cx: ff(p[0]), cy: ff(p[1]), r: ff(r) }), ...body ]; export { circle };