8 lines
305 B
TypeScript
8 lines
305 B
TypeScript
import * as React from 'react';
|
|
import type { IPersonaProps } from './Persona.types';
|
|
/**
|
|
* Persona with no default styles.
|
|
* [Use the `styles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Styling)
|
|
*/
|
|
export declare const PersonaBase: React.FunctionComponent<IPersonaProps>;
|