svg-to-component-loader
Why?
By using this it means you may never need things like vue-bytesize-icons and vue-feather-icons, your SVG would just be transformed to React or Vue component on the fly by this loader. However you can still use the prebuilt library like vue-bytesize-icons if you don't want to mess with your webpack config.
Install
yarn add svg-to-component-loader --dev
Usage
Configure it in webpack config
// webpack.config.jsmoduleexports = // ... other config module: rules: // For React.js test: /\.react.svg$/ loader: 'svg-to-component-loader' options: type: 'react' // For Vue.js test: /\.vue.svg$/ loader: 'svg-to-component-loader' options: type: 'vue'
Then simply import SVG in your app like this:
const App = <div> <UserIcon className="custom-class" /> </div>
Or simply use inline loader options:
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Author
svg-to-component-loader © EGOIST, Released under the MIT License.
Authored and maintained by EGOIST with help from contributors (list).
github.com/egoist · GitHub @EGOIST · Twitter @_egoistlily