Should remove the `xmlns:xlink` entirely, and replace `xlink:href` to `xlinkHref`
I just used the html to jsx converter.
In the example of
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#next-remove" />
It should remove the xmlns:xlink entirely, and replace xlink:href to xlinkHref.
Thoughts
Is that actually HTML? <use> isn't a HTML tag.
It's used within <svg>. Unsure how it should be treated. Support for xlinkHref exists in jsx.
Reference: http://stackoverflow.com/a/32994814/2152076
xmlnsXlink is now supported in the React docs, so it probably shouldn't be eliminated. https://facebook.github.io/react/docs/dom-elements.html
Probably a better option is just to handle namespaced attributes by camelCasing them and eliminating the colon, since that's invalid JSX.