I'm trying to set an iron-iconset-svg using using the icons with the symbol tag instead of using the g tag and the icon is not rendered. In all documentation and references on the internet the SVG is used with the tag g. There is
Here's some code snippet:
<iron-iconset-svg name="br-icons">
<svg style="display: none">
<defs>
<symbol id="icon-menu" viewBox="0 0 1024 1024">
<title>menu</title>
<path class="path1" d="M64 192h896v192h-896zM64 448h896v192h-896zM64 704h896v192h-896z"></path>
</symbol>
</defs>
</svg>
</iron-iconset-svg>
The following is the component call:
<iron-icon icon="br-icons:icon-menu"></iron-icon>
Does anyone have any idea how I can do this?