I have an SVG document, and I would like to include an external svg image within it, i.e. something like:
I needed to embed a SVG in my SVG but also change its color and apply transforms.
Only Firefox supports the "transform" attribute on the nested svg elements. Changing the color of
What I ended up doing was the following
This works on at least Firefox, Chrome and Inkscape.
This behaves the same as the child svg in the parent svg answer with the exception that you can now apply transforms on it.