SVG don't need to be optimized

This commit is contained in:
DrMint 2022-02-21 01:46:00 +01:00
parent 557bc792ed
commit b4d88a3377

View File

@ -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>
); );
} }