@thi.ng/hiccup-svg
Version:
SVG element functions for @thi.ng/hiccup & related tooling
19 lines (18 loc) • 414 B
JavaScript
import { fattribs } from "./format.js";
const group = (attribs, ...body) => [
"g",
__groupLayerID(fattribs({ ...attribs })),
...body
];
const __groupLayerID = (attribs) => {
if (attribs.__inkscapeLayer) {
attribs["inkscape:groupmode"] = "layer";
attribs["inkscape:label"] = attribs.__inkscapeLayer;
delete attribs.__inkscapeLayer;
}
return attribs;
};
export {
__groupLayerID,
group
};