react-svg-inline-loader
v0.2.2
Published
Finds all svg files require'd in as a React Component and inlines them.
Downloads
894
Maintainers
Readme
react-svg-inline-loader
Finds all svg files require'd in as a React Component and inlines them.
It should work with both the server-side rendering and on the browser.
Usage (in your webpack.config.js)
module: {
loaders: [{
test: /\.svg$/,
exclude: /(node_modules)/,
loaders: ['react-svg-inline-loader']
}]
}
Usage in your react components
var React = require('react')
var SvgPicture = require('./picture.svg')
class TestComponent extends React.Component {
constructor(props, context) {
super(props, context)
}
render() {
return <SvgPicture className="big red icon"/>
}
}
Requirements
node (version 4 or higher)
Installation
npm install react-svg-inline-loader --save
Tests
mocha
Dependencies
Nothing external