@plasmicpkgs/react-aria 0.0.162 → 0.0.164

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.
@@ -741,8 +741,8 @@ const BUTTON_VARIANTS = [
741
741
  ];
742
742
  const { variants: variants$e } = pickAriaComponentVariants(BUTTON_VARIANTS);
743
743
  const BaseButton = React.forwardRef(function BaseButtonInner(props, ref) {
744
- const { href } = props;
745
- if (href) {
744
+ const { href, isDisabled: disabled } = props;
745
+ if (href && !disabled) {
746
746
  return /* @__PURE__ */ React.createElement(
747
747
  LinkButton,
748
748
  {