@uifabric/experiments
Version:
Experimental React components for building experiences for Microsoft 365.
17 lines • 892 B
JavaScript
define(["require", "exports", "../../PersonaCoin/PersonaCoin", "../../../Foundation", "../PersonaText/PersonaText"], function (require, exports, PersonaCoin_1, Foundation_1, PersonaText_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.VerticalPersonaView = function (props) {
var Slots = Foundation_1.getSlots(props, {
root: 'div',
primaryText: PersonaText_1.PersonaText,
secondaryText: PersonaText_1.PersonaText,
coin: PersonaCoin_1.PersonaCoin,
});
return (Foundation_1.withSlots(Slots.root, null,
Foundation_1.withSlots(Slots.coin, { text: props.text }),
Foundation_1.withSlots(Slots.primaryText, null, props.text),
Foundation_1.withSlots(Slots.secondaryText, null)));
};
});
//# sourceMappingURL=VerticalPersona.view.js.map