UNPKG

@sap-ux/ui-components

Version:

SAP UI Components Library

28 lines 824 B
import React from 'react'; import type { IPersonaProps } from '@fluentui/react'; import { PersonaSize, PersonaPresence } from '@fluentui/react'; export { PersonaSize as UIPersonaSize }; export { PersonaPresence as UIPersonaPresence }; export type UIPersonaProps = IPersonaProps; /** * UIPersona component * based on https://developer.microsoft.com/en-us/fluentui#/controls/web/persona * * @exports * @class UIPersona * @extends {React.Component<IPersonaProps, {}>} */ export declare class UIPersona extends React.Component<IPersonaProps, {}> { /** * Initializes component properties. * * @param props */ constructor(props: IPersonaProps); private readonly personaStyles; /** * @returns {JSX.Element} */ render(): JSX.Element; } //# sourceMappingURL=UIPersona.d.ts.map