UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

20 lines 1.19 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = require("react"); var TextField_1 = require("office-ui-fabric-react/lib/TextField"); require("./TextField.Examples.scss"); 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