Closed
Description
I'm trying to load an SVG file as a React component. I found a PR facebook/create-react-app#3718 by @iansu that solves the problem.
However there is an issue with reading the SVG file contents.
Issue
I have the following SVG file (it was generated by [svg-sprite]):(https://www.npmjs.com/package/svg-sprite)
<?xml version="1.0" encoding="UTF-8"?>
<svg width="0" height="0" style="position:absolute">
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="filter">
<path d="M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" />
<path d="M0 0h24v24H0z" fill="none" />
</symbol>
</svg>
which is being imported as:
As you see the <svg />
element is empty.
Workaround
I was able to find a workaround to the above. All works fine if I add <defs />
element that includes <style />
element:
<?xml version="1.0" encoding="UTF-8"?>
<svg width="0" height="0" style="position:absolute">
<defs><style></style></defs>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="filter">
<path d="M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" />
<path d="M0 0h24v24H0z" fill="none" />
</symbol>
</svg>
which returns a proper <svg />
element and its contents:
Expected scenario
The SVG example from Issue section should be loaded correctly (with its contents) without adding some extra tags.
Metadata
Metadata
Assignees
Labels
No labels