SVG
Error: <svg>
attribute width: Expected length, "auto"
Don't use auto
:
<svg xmlns="http://www.w3.org/2000/svg" width="auto" height="15px"
Use 100%
instead:
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="15px"
Published