joshblack / react-svg-converter

20 stars 5 forks source link

Default template rendering trailing ; #4

Open willdady opened 8 years ago

willdady commented 8 years ago

The default template renders

return (
    ${svg};
);

However it should be:

return (
    ${svg}
);

The inner colon causes my build to fail in my webpack/babel setup.