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.
@@ -482,13 +482,13 @@ var Button = function Button(_ref) {
482
482
  _ref$showRipple = _ref.showRipple,
483
483
  showRipple = _ref$showRipple === void 0 ? true : _ref$showRipple,
484
484
  loading = _ref.loading,
485
- filled = _ref.filled,
485
+ outline = _ref.outline,
486
486
  _ref$size = _ref.size,
487
487
  size = _ref$size === void 0 ? "small" : _ref$size,
488
488
  buttonProps = _ref.buttonProps;
489
489
  var disableAction = disabled || loading;
490
- var _filled = size !== "x-small" && filled !== false;
491
- var _className = cx(getButtonStyle(size, type, !!showShadow, _filled), className);
490
+ var _outline = size === "x-small" || !!outline;
491
+ var _className = cx(getButtonStyle(size, type, !!showShadow, !_outline), className);
492
492
  return /*#__PURE__*/createElement("button", Object.assign({
493
493
  className: _className,
494
494
  onClick: !disableAction ? onClick : undefined,