babel-plugin-inline-react-svg
babel-plugin-inline-react-svg copied to clipboard
Stateful component
trafficstars
Fixes #13 Can be used like this:
// .babelrc
{
"plugins": [
["inline-react-svg", {
"statefulComponent": true
}]
]
}
// React
import React from 'react';
import CloseSVG from './close.svg';
const MyComponent = () => <CloseSvg svgRef={el => this.myEl = el} />;
This will need a rebase.