I have an svg
in a String variable. I get this string from an API call, so this information is dynamically present. I want to render this string via React.createElement
dynamically on browser. How do I do this?
One way is to parse svg string into elements, then call React.createElement(...)
for each element inside svg recursively, but writing an SVG parser doesn't seem to be optimal. Is there a cleaner way?
Thanks