UNPKG

rollup-plugin-react-svg

Version:
49 lines (34 loc) 695 B
# rollup-plugin-react-svg Load SVG images as React Components ## Install ```sh npm i rollup-plugin-react-svg --save-dev # or with yarn yarn add rollup-plugin-react-svg --dev ``` ## Usage ```js // rollup.config.js import reactSvg from "rollup-plugin-react-svg"; export default { ...opts, plugins: [ ...plugins, reactSvg({ // svgo options svgo: { plugins: [], // passed to svgo multipass: true }, // whether to output jsx jsx: false, // include: string include: null, // exclude: string exclude: null }) ] } ``` ## LICENSE [MIT](https://github.com/boopathi/react-svg-loader/blob/master/LICENSE)