office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
19 lines • 1.08 kB
JavaScript
import * as tslib_1 from "tslib";
// @codepen
import * as React from 'react';
import { TextField } from 'office-ui-fabric-react/lib/TextField';
import './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, { label: "Borderless Multiline TextField", multiline: true, rows: 4, borderless: true, placeholder: "No borders here, folks." }),
React.createElement(TextField, { label: "Borderless Standard TextField", borderless: true, placeholder: "No borders here, folks." })));
};
return TextFieldBorderlessExample;
}(React.Component));
export { TextFieldBorderlessExample };
//# sourceMappingURL=TextField.Borderless.Example.js.map