UNPKG

react-kube

Version:

Kube CSS in React Components

83 lines (66 loc) 3.53 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 LinkButton = (function (_React$Component) { function LinkButton() { _classCallCheck(this, LinkButton); if (_React$Component != null) { _React$Component.apply(this, arguments); } } _inherits(LinkButton, _React$Component); _createClass(LinkButton, [{ key: "render", value: function render() { var styles = (0, _classnames2["default"])({ "bold": this.props.bold, "btn": true, "btn-active": this.props.active, "btn-big": this.props.big, "btn-disabled": this.props.disabled, "btn-outline": this.props.outline, "btn-round": this.props.round, "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( "a", { className: (0, _classnames2["default"])(this.props.className, styles), href: this.props.url, style: this.props.style, target: this.props.target ? this.props.target : "_self" }, this.props.children ); } }]); return LinkButton; })(_react2["default"].Component); LinkButton.propTypes = { active: _react2["default"].PropTypes.bool, big: _react2["default"].PropTypes.bool, bold: _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, round: _react2["default"].PropTypes.bool, small: _react2["default"].PropTypes.bool, smaller: _react2["default"].PropTypes.bool, style: _react2["default"].PropTypes.object, target: _react2["default"].PropTypes.string, url: _react2["default"].PropTypes.string, width: _react2["default"].PropTypes.bool }; module.exports = LinkButton;