UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

27 lines 1.41 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = require("react"); var Persona_1 = require("office-ui-fabric-react/lib/Persona"); var Icon_1 = require("office-ui-fabric-react/lib/Icon"); var Stack_1 = require("office-ui-fabric-react/lib/Stack"); var example_data_1 = require("@uifabric/example-data"); exports.PersonaCustomRenderExample = function () { var examplePersona = { imageUrl: example_data_1.TestImages.personaFemale, imageInitials: 'AL', text: 'Annie Lindqvist', secondaryText: 'Software Engineer', tertiaryText: 'In a meeting', optionalText: 'Available at 4:00pm' }; return (React.createElement(Stack_1.Stack, { tokens: { childrenGap: 10 } }, React.createElement("div", null, "Custom icon in secondary text"), React.createElement(Persona_1.Persona, tslib_1.__assign({}, examplePersona, { size: Persona_1.PersonaSize.size72, presence: Persona_1.PersonaPresence.offline, onRenderSecondaryText: _onRenderSecondaryText, styles: { root: { margin: '0 0 10px 0' } } })))); }; function _onRenderSecondaryText(props) { return (React.createElement("div", null, React.createElement(Icon_1.Icon, { iconName: "Suitcase", styles: { root: { marginRight: 5 } } }), props.secondaryText)); } //# sourceMappingURL=Persona.CustomRender.Example.js.map