office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
18 lines (17 loc) • 605 B
TypeScript
import { BaseComponent } from '../../Utilities';
import { ITeachingBubbleProps } from './TeachingBubble.Props';
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;
}