UNPKG

react-kube

Version:

Kube CSS in React Components

72 lines (55 loc) 3.17 kB
"use strict"; var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) subClass.__proto__ = superClass; } var _react = require("react"); var _react2 = _interopRequireDefault(_react); var _classnames = require("classnames"); var _classnames2 = _interopRequireDefault(_classnames); var SubmitButton = (function (_React$Component) { function SubmitButton() { _classCallCheck(this, SubmitButton); if (_React$Component != null) { _React$Component.apply(this, arguments); } } _inherits(SubmitButton, _React$Component); _createClass(SubmitButton, [{ key: "render", value: function render() { var styles = (0, _classnames2["default"])({ "btn": true, "btn-active": this.props.active, "btn-big": this.props.big, "btn-disabled": this.props.disabled, "btn-outline": this.props.outline, "btn-small": this.props.small, "btn-smaller": this.props.smaller, "left": this.props.left, "right": this.props.right }); styles += this.props.color ? " btn-" + this.props.color : ""; styles += this.props.width ? " width-" + this.props.width : ""; return _react2["default"].createElement("input", { className: (0, _classnames2["default"])(this.props.className, styles), type: "submit", value: this.props.children }); } }]); return SubmitButton; })(_react2["default"].Component); SubmitButton.propTypes = { active: _react2["default"].PropTypes.bool, big: _react2["default"].PropTypes.bool, children: _react2["default"].PropTypes.node, className: _react2["default"].PropTypes.string, color: _react2["default"].PropTypes.string, disabled: _react2["default"].PropTypes.bool, icon: _react2["default"].PropTypes.string, left: _react2["default"].PropTypes.bool, onClick: _react2["default"].PropTypes.func, outline: _react2["default"].PropTypes.bool, right: _react2["default"].PropTypes.bool, small: _react2["default"].PropTypes.bool, smaller: _react2["default"].PropTypes.bool, width: _react2["default"].PropTypes.bool }; module.exports = SubmitButton;