logoalt Hacker News

recursivelast Tuesday at 9:38 PM2 repliesview on HN

It seems unusual to make the package name so different from the project name.

Also, the instructions for converting svg to react component work sometimes. It won't work if your svg has any style attributes for example. React also warns on some valid svg attributes, such as this one.

    <rect x="11" y="11" width="8" height="8" stroke="green" clip-path="circle() view-box" />
I've spent at least a day cleaning up after devs who just dropped inline SVG content into react components without checking whether it works. If you actually had a reliable way of embedding SVG in JSX in such a way that it worked with react, I might have use for it on occasion.

The given code example is missing a right angle brace on the `<svg` line.


Replies

cAtte_last Tuesday at 9:57 PM

yeah, not sure why anyone would copy-paste SVG as JSX when SVGR exists: https://react-svgr.com/