next-svgr-react-component

1.1.1 • Public • Published

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>
)

/next-svgr-react-component/

    Package Sidebar

    Install

    npm i next-svgr-react-component

    Weekly Downloads

    30

    Version

    1.1.1

    License

    MIT

    Unpacked Size

    3.71 kB

    Total Files

    5

    Last publish

    Collaborators

    • negan1911