Designer News
Where the design community meets.
Doomstadt Software Developer Joined over 8 years ago
Marius hasn't upvoted anything yet.
Designer News
Where the design community meets.
Designer News is a large, global community of people working or interested in design and technology.
Have feedback?
Hey Alessandro,
Besides the stuff Simon already explained it also converts the inline style to attributes or it converts to Javascript objects.
Basically
<svg style='fill:red;margin-left:20px;'..
will throw an error in React, but using this tool the output will be like this<svg fill='#f00' style={{marginLeft: 20}}..
which is valid JSX code.You will find this tool usefull mostly when working with SVG sprites in React.