plataforma-fundacao-componentes 2.26.8 → 2.26.9

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.
@@ -5259,11 +5259,11 @@ var IconButton = forwardRef(function (_ref, ref) {
5259
5259
  }
5260
5260
  }, [disabled, onClick]);
5261
5261
  var classNames = useMergedClassNames([rootClassName$1M, props.className, rootClassName$1M + "-" + theme]);
5262
- return React.createElement("button", Object.assign({
5262
+ return React.createElement("button", Object.assign({}, props, {
5263
5263
  ref: ref,
5264
- onClick: handleClick
5265
- }, props, {
5266
- className: classNames
5264
+ onClick: handleClick,
5265
+ className: classNames,
5266
+ disabled: disabled
5267
5267
  }), icon);
5268
5268
  });
5269
5269
  IconButton.displayName = 'IconButton';