SVG don't need to be optimized
This commit is contained in:
parent
557bc792ed
commit
b4d88a3377
@ -9,7 +9,13 @@ export type SVGProps = {
|
|||||||
export default function SVG(props: SVGProps): JSX.Element {
|
export default function SVG(props: SVGProps): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<div className={props.className}>
|
<div className={props.className}>
|
||||||
<Image src={props.src} alt={props.src} height={1000} width={1000} />
|
<Image
|
||||||
|
src={props.src}
|
||||||
|
alt={props.src}
|
||||||
|
height={1000}
|
||||||
|
width={1000}
|
||||||
|
unoptimized
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user