@kimafinance/kima-transaction-widget 1.2.10-beta.1 → 1.2.11-beta.1
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2949,12 +2949,12 @@ var CustomCheckbox = function CustomCheckbox(_ref) {
|
|
|
2949
2949
|
return React__default.createElement("div", {
|
|
2950
2950
|
className: 'kima-custom-checkbox'
|
|
2951
2951
|
}, React__default.createElement("div", {
|
|
2952
|
-
className: 'content',
|
|
2952
|
+
className: 'custom-checkbox-content',
|
|
2953
2953
|
onClick: function onClick() {
|
|
2954
2954
|
return setCheck(!checked);
|
|
2955
2955
|
}
|
|
2956
2956
|
}, React__default.createElement("div", {
|
|
2957
|
-
className: "icon-wrapper " + theme.colorMode
|
|
2957
|
+
className: "custom-checkbox-icon-wrapper " + theme.colorMode
|
|
2958
2958
|
}, checked && React__default.createElement(Check, null)), React__default.createElement("span", null, text)));
|
|
2959
2959
|
};
|
|
2960
2960
|
|