next-svgr

0.0.2 • Public • Published

🚀 next-svgr

License npm package Dependencies DevDependencies

Plugin for Next to automatically be able to transform svg files into components using the excellent svgr library.

Table of contents

Installation

npm install --save next-svgr

Or using yarn:

yarn add next-svgr

Then, import the library in your next.config.js file.

// next.config.js
const withSvgr = require("next-svgr");
 
module.exports = withSvgr({
  // your config for other plugins or the general next.js here...
});

Or you can use it with next-compose-plugins for a cleaner configuration.

// next.config.js
const withPlugins = require("next-compose-plugins");
const withSvgr = require("next-svgr");
 
module.exports = withPlugins([
  withSvgr
  // your other plugins here
]);

Usage

You can now start importing your SVG files as if they were components:

import MyIcon from "./myicon.svg";
 
export default () => (
  <div>
    <MyIcon />
  </div>
);

Please check the documentation of svgr for more examples.

Readme

Keywords

none

Package Sidebar

Install

npm i next-svgr

Weekly Downloads

5,818

Version

0.0.2

License

MIT

Unpacked Size

87.9 kB

Total Files

7

Last publish

Collaborators

  • anomen