pebble-web 2.12.0 → 2.14.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.
@@ -466,13 +466,13 @@ const Button = ({
466
466
  className,
467
467
  showRipple = true,
468
468
  loading,
469
- filled,
469
+ outline,
470
470
  size = "small",
471
471
  buttonProps
472
472
  }) => {
473
473
  const disableAction = disabled || loading;
474
- const _filled = size !== "x-small" && filled !== false;
475
- const _className = cx(getButtonStyle(size, type, !!showShadow, _filled), className);
474
+ const _outline = size === "x-small" || !!outline;
475
+ const _className = cx(getButtonStyle(size, type, !!showShadow, !_outline), className);
476
476
  return /*#__PURE__*/createElement("button", Object.assign({
477
477
  className: _className,
478
478
  onClick: !disableAction ? onClick : undefined,