SVG generated lacks space before the word width; both Chromium and Firefox fail to display when loading the SVG via img tag.
...
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 49 49" stroke="none"width=200>
Adding a space (and quotes around the width value for good measure) allow the SVG to be displayed:
...
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 49 49" stroke="none" width="200">
SVG generated lacks space before the word width; both Chromium and Firefox fail to display when loading the SVG via
imgtag.Adding a space (and quotes around the width value for good measure) allow the SVG to be displayed: