SVG 문자열을 받아 SVGElement
를 생성합니다.
console.log($$el('<rect x="0" y="0" width="10" height="10"></rect>')());
// rect
const str =
'<rect x="0" y="0" width="10" height="10"></rect><circle cx="1" cy="1" r="5"></circle>';
console.log($$el(str)());
// rect