react-sleek
Version:
React Sleek Component Library
37 lines (36 loc) • 1.32 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var typestyle_1 = require("typestyle");
var csx_1 = require("csx");
var Head2 = /** @class */ (function (_super) {
__extends(Head2, _super);
function Head2() {
return _super !== null && _super.apply(this, arguments) || this;
}
Head2.prototype.render = function () {
return React.createElement("h2", { className: head2 }, this.props.children);
};
return Head2;
}(React.PureComponent));
exports.default = Head2;
var head2 = typestyle_1.style({
fontSize: csx_1.px(20),
lineHeight: csx_1.px(20),
margin: csx_1.px(0),
marginBottom: csx_1.px(20),
padding: csx_1.px(0),
});