@uifabric/experiments
Version:
Experimental React components for building experiences for Microsoft 365.
19 lines • 835 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/** @jsx withSlots */
var PersonaCoin_1 = require("../../PersonaCoin/PersonaCoin");
var Foundation_1 = require("../../../Foundation");
var PersonaText_1 = require("../PersonaText/PersonaText");
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