1.1.1 • Published 4 years ago

next-svgr-react-component v1.1.1

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

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

4 years ago

1.1.0

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago