SVGs in Next

Hey friends. I'm working on a new project and having some issues using SVGs. What is your recommended method for using SVGs in Next?

I know there's a lot of answers online, but I'm wondering if there's a specific T3 way of doing this.

Thanks! 😄
Solution
I create react components for them and put into separate folder.

const SVGLogo = () => <svg>...</svg>;
Was this page helpful?