@newhighsco/next-plugin-svgr
v3.0.166
Published
Next.js plugin for transforming SVGs into React components using SVGR
Readme
next-plugin-svgr 
Next.js plugin for transforming SVGs into React components using SVGR
Installation
Install Next.js and @newhighsco/next-plugin-svgr:
npm install --save next @newhighsco/next-plugin-svgrUsage
Create a next.config.js in your project:
// next.config.js
const withSvgr = require('@newhighsco/next-plugin-svgr')
module.exports = withSvgr({
svgrOptions: {
/* config options here */
}
})In your code:
import starUrl, { ReactComponent as Star } from './star.svg'
const App = () => (
<>
<img src={starUrl} alt="star" />
<Star />
</>
)With TypeScript
In your next-env.d.ts file (or in another type declaration file of your choosing that's within the include section of your tsconfig.js), simply add the following:
declare module '*.svg' {
import { FC, SVGProps } from 'react';
export const ReactComponent: FC<SVGProps<SVGSVGElement>>;
const src: string;
export default src;
}This notifies the compiler of the 2 possible ways you're able to import and use SVG files with this plugin integrated.
