mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-09-18 16:05:33 -04:00
next-mdx-remote v4 (#737)
This commit is contained in:
21
components/Image/Image.tsx
Normal file
21
components/Image/Image.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import NextImage from "next/image";
|
||||
import type { ImageProps as NextImageProps } from "next/image";
|
||||
|
||||
const Image = ({ src, width, height, alt, quality, priority }: NextImageProps) => {
|
||||
return (
|
||||
<div className="image_wrapper">
|
||||
<NextImage
|
||||
src={(src as string).replace(/^\/public/g, "")}
|
||||
layout="intrinsic"
|
||||
width={width}
|
||||
height={height}
|
||||
alt={alt || ""}
|
||||
quality={quality || 65}
|
||||
loading={priority ? "eager" : "lazy"}
|
||||
priority={!!priority}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Image;
|
Reference in New Issue
Block a user