UNPKG

next-squoosh

Version:

A React image optimization component with automatic WebP conversion and compression

10 lines (9 loc) 317 B
import { ImageProps } from 'next/image'; import React from 'react'; interface SquooshImageProps extends Omit<ImageProps, 'src'> { src: string; format?: 'webp' | 'avif'; quality?: number; } export default function Image({ src, format, quality, ...props }: SquooshImageProps): React.JSX.Element; export {};