Skip to content

Instantly share code, notes, and snippets.

View nekochan0122's full-sized avatar
🇹🇼

NekoChan nekochan0122

🇹🇼
View GitHub Profile
@nekochan0122
nekochan0122 / NextImage.tsx
Last active September 10, 2022 10:38
NextImage Infinity
import React from 'react'
import NextImage from 'next/future/image'
import type { ImageProps } from 'next/future/image'
function NextImageInfinity({ width, height, draggable, ...rest }: ImageProps) {
return (
<NextImage
width={width ?? Infinity}
height={height ?? Infinity}
draggable={draggable ?? false}