sprint-asia-custom-component 0.1.122 → 0.1.123
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
|
@@ -187,8 +187,8 @@
|
|
|
187
187
|
const handleButtonRelease = () => {
|
|
188
188
|
setIsPressed(false);
|
|
189
189
|
};
|
|
190
|
-
const handleClick =
|
|
191
|
-
onClick();
|
|
190
|
+
const handleClick = e => {
|
|
191
|
+
onClick(e);
|
|
192
192
|
};
|
|
193
193
|
return /*#__PURE__*/React__default["default"].createElement("button", {
|
|
194
194
|
className: `
|
package/package.json
CHANGED