I have a svg element, and I would like to insert a material icon inside.
Like How do I include a font awesome icon in my svg? but in Vue with material icons
That code doesn't work
html:
<svg >
<circle class="background" cx="50%" cy="50%" r=100></circle>
<text class="icon" x="50%" y="50%" >dashboard</text>
</svg>
and css:
.icon {
font-family: "Material Icons";
}
but that code outside from svg element works:
<div style="font-family: Material Icons;">settings</div>