@uifabric/experiments
Version:
Experimental React components for building experiences for Microsoft 365.
14 lines (13 loc) • 536 B
TypeScript
import { ImageLoadState } from 'office-ui-fabric-react';
import { ISlotProp } from '../../../Foundation';
import { IPersonaCoinProps } from '../PersonaCoin.types';
export declare type IPersonaCoinImageSlot = ISlotProp<IPersonaCoinImageProps>;
export interface IPersonaCoinImageProps {
src?: string;
className?: string;
dimension?: IPersonaCoinProps['size'];
imageAlt?: string;
onPhotoLoadingStateChange?: (loadState: ImageLoadState) => void;
imageShouldFadeIn?: boolean;
imageShouldStartVisible?: boolean;
}