Created by: iansu
Adds a babel plugin that transforms named SVG imports into components via a webpack loader. Usage: import { default as Logo } from './logo.svg';
The loader currently being used svg-react-loader
doesn't provide a named export which is why we have to import default
above. This can potentially be fixed in the new babel plugin, by making a PR to svg-react-loader
or by using a different loader.
Closes #3856 (closed)