1in the svg file change
2
3xlink:href="data:img/png;base64,
4
5to
6
7xlink:href="data:image/png;base64,
8
1<!-- add the xlmns attribute to the svg element -->
2<svg viewBox="0 0 24 24"><path d="..."/></svg>
3
4<!-- after -->
5<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="..."/></svg>