UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

40 lines (38 loc) 1.88 kB
"use strict"; var __extends = (this && this.__extends) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; var __assign = (this && this.__assign) || Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; var React = require("react"); var index_1 = require("../../../../index"); var examplePersona = { secondaryText: 'Designer', tertiaryText: 'In a meeting', optionalText: 'Available at 4:00pm' }; var personaWithInitials = __assign({}, examplePersona, { primaryText: 'Maor Sharett', imageInitials: 'MS' }); var PersonaInitialsExample = (function (_super) { __extends(PersonaInitialsExample, _super); function PersonaInitialsExample() { return _super !== null && _super.apply(this, arguments) || this; } PersonaInitialsExample.prototype.render = function () { return (React.createElement("div", null, React.createElement(index_1.Persona, __assign({}, examplePersona, { primaryText: 'Kat Larrson' })), React.createElement(index_1.Persona, __assign({}, examplePersona, { primaryText: 'Annie Lindqvist' })), React.createElement(index_1.Persona, __assign({}, personaWithInitials, { initialsColor: index_1.PersonaInitialsColor.lightBlue })), React.createElement(index_1.Persona, __assign({}, personaWithInitials, { initialsColor: index_1.PersonaInitialsColor.teal })))); }; return PersonaInitialsExample; }(React.Component)); exports.PersonaInitialsExample = PersonaInitialsExample; //# sourceMappingURL=Persona.Initials.Example.js.map