Severian's picture
Upload 7464 files
c211499
raw
history blame contribute delete
229 Bytes
import * as util from '../util.js';
export { addSVGLabel };
function addSVGLabel(root, node) {
var domNode = root;
domNode.node().appendChild(node.label);
util.applyStyle(domNode, node.labelStyle);
return domNode;
}