@clickpalm/react 1.2.5 → 1.2.6
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.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -767,7 +767,7 @@ function Icon({ name, size = 24, color = "black", ...rest }) {
|
|
|
767
767
|
{
|
|
768
768
|
width: size,
|
|
769
769
|
height: size,
|
|
770
|
-
|
|
770
|
+
fill: fillColor,
|
|
771
771
|
"aria-hidden": true,
|
|
772
772
|
...rest
|
|
773
773
|
}
|
|
@@ -1170,7 +1170,7 @@ var Checkbox2 = (0, import_react5.forwardRef)(
|
|
|
1170
1170
|
onCheckedChange,
|
|
1171
1171
|
hasError: !!errorMessage,
|
|
1172
1172
|
...rest,
|
|
1173
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(CheckboxIndicator, {
|
|
1173
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(CheckboxIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Icon, { name: "Check", size: 16 }) })
|
|
1174
1174
|
}
|
|
1175
1175
|
),
|
|
1176
1176
|
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(CheckboxLabel, { children: label })
|
package/dist/index.mjs
CHANGED
|
@@ -696,7 +696,7 @@ function Icon({ name, size = 24, color = "black", ...rest }) {
|
|
|
696
696
|
{
|
|
697
697
|
width: size,
|
|
698
698
|
height: size,
|
|
699
|
-
|
|
699
|
+
fill: fillColor,
|
|
700
700
|
"aria-hidden": true,
|
|
701
701
|
...rest
|
|
702
702
|
}
|
|
@@ -1099,7 +1099,7 @@ var Checkbox2 = forwardRef2(
|
|
|
1099
1099
|
onCheckedChange,
|
|
1100
1100
|
hasError: !!errorMessage,
|
|
1101
1101
|
...rest,
|
|
1102
|
-
children: /* @__PURE__ */ jsx18(CheckboxIndicator, {
|
|
1102
|
+
children: /* @__PURE__ */ jsx18(CheckboxIndicator, { children: /* @__PURE__ */ jsx18(Icon, { name: "Check", size: 16 }) })
|
|
1103
1103
|
}
|
|
1104
1104
|
),
|
|
1105
1105
|
/* @__PURE__ */ jsx18(CheckboxLabel, { children: label })
|
package/package.json
CHANGED