office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
18 lines • 1.26 kB
JavaScript
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/TextField", "./TextField.Examples.scss"], function (require, exports, tslib_1, React, TextField_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var TextFieldBorderlessExample = /** @class */ (function (_super) {
tslib_1.__extends(TextFieldBorderlessExample, _super);
function TextFieldBorderlessExample() {
return _super !== null && _super.apply(this, arguments) || this;
}
TextFieldBorderlessExample.prototype.render = function () {
return (React.createElement("div", { className: "docs-TextFieldExample" },
React.createElement(TextField_1.TextField, { label: "Borderless Multiline TextField", multiline: true, rows: 4, borderless: true, placeholder: "No borders here, folks." }),
React.createElement(TextField_1.TextField, { label: "Borderless Standard TextField", borderless: true, placeholder: "No borders here, folks." })));
};
return TextFieldBorderlessExample;
}(React.Component));
exports.TextFieldBorderlessExample = TextFieldBorderlessExample;
});
//# sourceMappingURL=TextField.Borderless.Example.js.map