office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
8 lines • 452 B
JavaScript
// @codepen
import * as React from 'react';
import { Label } from 'office-ui-fabric-react/lib/Label';
export var LabelBasicExample = function () { return (React.createElement("div", null,
React.createElement(Label, null, "I'm a Label"),
React.createElement(Label, { disabled: true }, "I'm a disabled Label"),
React.createElement(Label, { required: true }, "I'm a required Label"))); };
//# sourceMappingURL=Label.Basic.Example.js.map