armstrong-react
Version:
Rocketmakers Armstrong library of React components
37 lines (36 loc) • 1.29 kB
JavaScript
;
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var __assign = (this && this.__assign) || Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
var React = require("react");
var Text = (function (_super) {
__extends(Text, _super);
function Text() {
_super.apply(this, arguments);
}
Text.prototype.render = function () {
switch (this.props.elementType) {
case "p":
return React.createElement("p", __assign({}, this.props), this.props.children);
case "span":
return React.createElement("span", __assign({}, this.props), this.props.children);
case "label":
return React.createElement("label", __assign({}, this.props), this.props.children);
}
};
Text.defaultProps = {
elementType: "p"
};
return Text;
}(React.Component));
exports.Text = Text;