UNPKG

react-img-webp

Version:

React rendering WebP on supported platforms

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