UNPKG

@d3fc/d3fc-element

Version:

Custom HTML elements that make it easier to create responsive visualisations that integrate easily with other UI frameworks (e.g. React, Angular)

9 lines (7 loc) 248 B
import element from './element'; export default element( () => document.createElementNS('http://www.w3.org/2000/svg', 'svg'), (element, node, { width, height }) => { node.setAttribute('viewBox', `0 0 ${width} ${height}`); } );