Answers for "use svg image in next js"

0

use svg image in next js

import Image from 'next/img';

import Illustration from '../public/Rolling-1s-200px.svg';
// can be imported from anywhere, not necessarily public

// ...

<Image src={Illustration} />
// one needs to use `Illustration.src` to get the source URL
// <img src={Illustration.src} ... />
Posted by: Guest on October-27-2021
0

use svg image in next js

import Image from 'next/img';

// ...

<Image src="/Rolling-1s-200px.svg" width="2000" height="2000" />
Posted by: Guest on October-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language