@plasmicpkgs/react-aria 0.0.162 → 0.0.163

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.
@@ -749,8 +749,8 @@ const BUTTON_VARIANTS = [
749
749
  ];
750
750
  const { variants: variants$e } = pickAriaComponentVariants(BUTTON_VARIANTS);
751
751
  const BaseButton = React__default.default.forwardRef(function BaseButtonInner(props, ref) {
752
- const { href } = props;
753
- if (href) {
752
+ const { href, isDisabled: disabled } = props;
753
+ if (href && !disabled) {
754
754
  return /* @__PURE__ */ React__default.default.createElement(
755
755
  LinkButton,
756
756
  {