UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

20 lines (19 loc) 731 B
/// <reference types="react" /> import { BaseComponent } from '../../../Utilities'; import { IPersonaCoinProps } from '../Persona.types'; export interface IPersonaState { isImageLoaded?: boolean; isImageError?: boolean; } /** * PersonaCoin with no default styles. * [Use the `getStyles` API to add your own styles.](https://github.com/OfficeDev/office-ui-fabric-react/wiki/Styling) */ export declare class PersonaCoinBase extends BaseComponent<IPersonaCoinProps, IPersonaState> { static defaultProps: IPersonaCoinProps; constructor(props: IPersonaCoinProps); render(): JSX.Element | null; private _onRenderCoin; private _onRenderInitials; private _onPhotoLoadingStateChange; }