@pingux/astro 1.27.0-alpha.20 → 1.27.0-alpha.21
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.
@@ -20,12 +20,15 @@ var _default = {
|
|
20
20
|
title: 'Recipes/NeutralCheckboxField'
|
21
21
|
};
|
22
22
|
exports["default"] = _default;
|
23
|
+
var sx = {
|
24
|
+
checkboxColor: {
|
25
|
+
color: 'neutral.10'
|
26
|
+
}
|
27
|
+
};
|
23
28
|
|
24
29
|
var Default = function Default() {
|
25
30
|
return (0, _react2.jsx)(_CheckboxField["default"], {
|
26
|
-
|
27
|
-
color: 'neutral.10'
|
28
|
-
}
|
31
|
+
sx: sx.checkboxColor
|
29
32
|
}, "Click me");
|
30
33
|
};
|
31
34
|
|
@@ -4,10 +4,13 @@ import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
4
4
|
export default {
|
5
5
|
title: 'Recipes/NeutralCheckboxField'
|
6
6
|
};
|
7
|
+
var sx = {
|
8
|
+
checkboxColor: {
|
9
|
+
color: 'neutral.10'
|
10
|
+
}
|
11
|
+
};
|
7
12
|
export var Default = function Default() {
|
8
13
|
return ___EmotionJSX(CheckboxField, {
|
9
|
-
|
10
|
-
color: 'neutral.10'
|
11
|
-
}
|
14
|
+
sx: sx.checkboxColor
|
12
15
|
}, "Click me");
|
13
16
|
};
|