office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
18 lines (17 loc) • 602 B
TypeScript
/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { IPersonaProps } from './Persona.types';
/**
* Persona with no default styles.
* [Use the `styles` API to add your own styles.](https://github.com/OfficeDev/office-ui-fabric-react/wiki/Styling)
*/
export declare class PersonaBase extends BaseComponent<IPersonaProps, {}> {
static defaultProps: IPersonaProps;
constructor(props: IPersonaProps);
render(): JSX.Element;
/**
* Deprecation helper for getting text.
*/
private _getText();
private _renderElement;
}