react-sleek
Version:
React Sleek Component Library
34 lines (33 loc) • 1.23 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 Head3 = /** @class */ (function (_super) {
__extends(Head3, _super);
function Head3() {
return _super !== null && _super.apply(this, arguments) || this;
}
Head3.prototype.render = function () {
return React.createElement("h3", { className: head3 }, this.props.children);
};
return Head3;
}(React.PureComponent));
exports.default = Head3;
var head3 = typestyle_1.style({
margin: csx_1.px(0),
padding: csx_1.px(0),
});