(element, attributes)
| 31 | : "auto"; |
| 32 | |
| 33 | const createSVG = (element, attributes) => |
| 34 | Object.entries(attributes).reduce((node, [attribute, value]) => { |
| 35 | node.setAttribute(attribute, value); |
| 36 | return node; |
| 37 | }, document.createElementNS("http://www.w3.org/2000/svg", element)); |
| 38 | |
| 39 | |
| 40 | // motion blur |