@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.cjs CHANGED
@@ -4297,6 +4297,7 @@ var ButtonIcon = ({
4297
4297
  containerClasses,
4298
4298
  "aria-label": ariaLabel = tooltip,
4299
4299
  type = "button",
4300
+ disabled,
4300
4301
  ...rest
4301
4302
  }) => {
4302
4303
  const buttonProps = {
@@ -4312,6 +4313,7 @@ var ButtonIcon = ({
4312
4313
  "aria-label": ariaLabel,
4313
4314
  type,
4314
4315
  loaderClasses,
4316
+ disabled: disabled || isLoading,
4315
4317
  ...rest
4316
4318
  };
4317
4319
  if (tooltip && showTooltip) {