UNPKG

@thi.ng/hiccup-svg

Version:

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

15 lines (14 loc) 216 B
import { fattribs, ff } from "./format.js"; const text = (p, body, attribs, ...children) => [ "text", fattribs({ ...attribs, x: ff(p[0]), y: ff(p[1]) }), body, ...children ]; export { text };