office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
19 lines (18 loc) • 655 B
TypeScript
/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { ITeachingBubbleProps } from './TeachingBubble.types';
import { ITeachingBubbleState } from './TeachingBubble';
import { ImageFit } from '../../Image';
export declare class TeachingBubbleContent extends BaseComponent<ITeachingBubbleProps, ITeachingBubbleState> {
static defaultProps: {
hasCondensedHeadline: boolean;
imageProps: {
imageFit: ImageFit;
width: number;
height: number;
};
};
private _id;
constructor(props: ITeachingBubbleProps);
render(): JSX.Element;
}