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.
@@ -460,13 +460,13 @@ const Button = ({
460
460
  className,
461
461
  showRipple = true,
462
462
  loading,
463
- filled,
463
+ outline,
464
464
  size = "small",
465
465
  buttonProps
466
466
  }) => {
467
467
  const disableAction = disabled || loading;
468
- const _filled = size !== "x-small" && filled !== false;
469
- const _className = cx(getButtonStyle(size, type, !!showShadow, _filled), className);
468
+ const _outline = size === "x-small" || !!outline;
469
+ const _className = cx(getButtonStyle(size, type, !!showShadow, !_outline), className);
470
470
  return /*#__PURE__*/createElement("button", Object.assign({
471
471
  className: _className,
472
472
  onClick: !disableAction ? onClick : undefined,