gather-content-ui
Version:
GatherContent UI Library
33 lines (32 loc) • 2.3 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ButtonSecondary = ButtonSecondary;
var _react = _interopRequireDefault(require("react"));
var _classnames = _interopRequireDefault(require("classnames"));
var _ButtonBase = require("../ButtonBase");
var _common = require("../common");
var _excluded = ["children", "className", "disabled", "active"];
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
function ButtonSecondary(_ref) {
var children = _ref.children,
className = _ref.className,
disabled = _ref.disabled,
active = _ref.active,
rest = _objectWithoutProperties(_ref, _excluded);
var classes = (0, _classnames["default"])("gui-button-secondary gui-inherit-color-icon", className, {
"gui-button-secondary-active": active
});
return /*#__PURE__*/_react["default"].createElement(_ButtonBase.ButtonBase, _extends({
className: classes,
disabled: disabled,
active: active
}, rest), children);
}
ButtonSecondary.defaultProps = _common.defaultProps;
ButtonSecondary.sizes = _common.sizes;
//# sourceMappingURL=ButtonSecondary.js.map