UNPKG

react-img-webp

Version:

React rendering WebP on supported platforms

7 lines (6 loc) 221 B
import * as React from "react"; export interface ImageProps extends React.ImgHTMLAttributes<HTMLImageElement> { webP?: string; useWebP?: boolean; } export declare const Image: React.FunctionComponent<ImageProps>;