@julseb-lib/react 1.0.74 → 1.0.75

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.
package/dist/index.js CHANGED
@@ -4109,6 +4109,7 @@ var ButtonIcon = ({
4109
4109
  containerClasses,
4110
4110
  "aria-label": ariaLabel = tooltip,
4111
4111
  type = "button",
4112
+ disabled,
4112
4113
  ...rest
4113
4114
  }) => {
4114
4115
  const buttonProps = {
@@ -4124,6 +4125,7 @@ var ButtonIcon = ({
4124
4125
  "aria-label": ariaLabel,
4125
4126
  type,
4126
4127
  loaderClasses,
4128
+ disabled: disabled || isLoading,
4127
4129
  ...rest
4128
4130
  };
4129
4131
  if (tooltip && showTooltip) {