selectSvg = withClone(helloSvg, function (el) {
const svg = d3.select(el)
svg.select('rect').attr('fill', 'rebeccapurple')
svg.select('circle').attr('fill', 'goldenrod')
svg.select('ellipse').attr('stroke', 'black')
svg.select('line').attr('stroke-dasharray', '5')
svg.select('text').attr('font-family', 'sans-serif')
})