office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
10 lines • 551 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
// @codepen
var React = require("react");
var Label_1 = require("office-ui-fabric-react/lib/Label");
exports.LabelBasicExample = function () { return (React.createElement("div", null,
React.createElement(Label_1.Label, null, "I'm a Label"),
React.createElement(Label_1.Label, { disabled: true }, "I'm a disabled Label"),
React.createElement(Label_1.Label, { required: true }, "I'm a required Label"))); };
//# sourceMappingURL=Label.Basic.Example.js.map
;