pebble-web 2.12.0 → 2.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -476,13 +476,13 @@ var Button = function Button(_ref) {
476
476
  _ref$showRipple = _ref.showRipple,
477
477
  showRipple = _ref$showRipple === void 0 ? true : _ref$showRipple,
478
478
  loading = _ref.loading,
479
- filled = _ref.filled,
479
+ outline = _ref.outline,
480
480
  _ref$size = _ref.size,
481
481
  size = _ref$size === void 0 ? "small" : _ref$size,
482
482
  buttonProps = _ref.buttonProps;
483
483
  var disableAction = disabled || loading;
484
- var _filled = size !== "x-small" && filled !== false;
485
- var _className = cx(getButtonStyle(size, type, !!showShadow, _filled), className);
484
+ var _outline = size === "x-small" || !!outline;
485
+ var _className = cx(getButtonStyle(size, type, !!showShadow, !_outline), className);
486
486
  return /*#__PURE__*/createElement("button", Object.assign({
487
487
  className: _className,
488
488
  onClick: !disableAction ? onClick : undefined,