DEV Community

Discussion on: Importing SVGs to Next.js

Collapse
 
jcubic profile image
Jakub T. Jankiewicz

Thanks for the article. One note with SVGR you need:

import Eye from "../assets/eye.svg";
// and in JSX use
<Eye/>
Enter fullscreen mode Exit fullscreen mode