1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 02:18:29 -04:00
2022-01-18 13:54:12 -05:00

24 lines
604 B
TypeScript

import NextImage from "next/image";
import type { ImageProps as NextImageProps } from "next/image";
import styles from "./Image.module.css";
const Image = ({ src, width, height, alt, quality, priority }: NextImageProps) => {
return (
<div className={styles.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;