If an svg element has multiple path tags inside, only the first path is added to the nano element.
If I have an svg element like this:
<svg>
<title></title>
<path></path>
<path></path>
</svg>
When the element is rendered in the dom, I get this:
<svg>
<title></title>
<path></path>
</svg>
<path></path>
I did a comparison in codesandbox with creating a regular element with document.createElement and with nanohtml.