UNPKG

@fluentui/react

Version:

Reusable React components for building web experiences.

8 lines (7 loc) 265 B
import * as React from 'react'; import { ImageLoadState } from './Image.types'; import type { IImageProps } from './Image.types'; export interface IImageState { loadState?: ImageLoadState; } export declare const ImageBase: React.FunctionComponent<IImageProps>;