Skip to content

Instantly share code, notes, and snippets.

View TomasSestak's full-sized avatar
🎯
Focusing

Tomáš Šesták TomasSestak

🎯
Focusing
View GitHub Profile
@TomasSestak
TomasSestak / NextPicture.tsx
Last active September 20, 2024 13:02
NextPicture - Picture Component that uses native picture element while keeping NextImageProps
import { getImageProps, ImageProps } from "next/image";
import { StaticImport } from "next/dist/shared/lib/get-img-props";
export type NextPictureSetWithMedia = {
src: StaticImport;
media: number;
};
export type NextPictureSetWithoutMedia = {
src: StaticImport;