18 lines
592 B
TypeScript
18 lines
592 B
TypeScript
import * as React from 'react';
|
|
import type { IDocumentCardImageProps } from './DocumentCardImage.types';
|
|
import type { JSXElement } from '@fluentui/utilities';
|
|
export interface IDocumentCardImageState {
|
|
readonly imageHasLoaded: boolean;
|
|
}
|
|
/**
|
|
* {@docCategory DocumentCard}
|
|
*/
|
|
export declare class DocumentCardImageBase extends React.Component<IDocumentCardImageProps, IDocumentCardImageState> {
|
|
private _classNames;
|
|
constructor(props: IDocumentCardImageProps);
|
|
render(): JSXElement;
|
|
private _onImageLoad;
|
|
private _renderCenterIcon;
|
|
private _renderCornerIcon;
|
|
}
|