Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 921 Bytes

README.md

File metadata and controls

59 lines (42 loc) · 921 Bytes

next-svg-react-component

This plugin aims to have the same CRA useful behaviour on next regarding SVG.

Installation

npm install --save next-svgr-react-component

Or using yarn:

yarn add next-svgr-react-component

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

// next.config.js
const withSVG = require("next-svgr-react-component");

module.exports = withSVG({});

or, with next-compose-plugins:

const withSVG = require("next-svgr-react-component");

module.exports = withPlugins([withSVG])

Usage:

This plugin allows the usage of SVG in various formats:

As Static Path:

import starUrl from './star.svg'
 
const App = () => (
  <div>
    <img src={starUrl} alt="star" />
    <Star />
  </div>
)

As React Component

import { ReactComponent as Star } from './star.svg'
 
const App = () => (
  <div>
    <Star />
  </div>
)