sapo-components-ui-rn 1.1.17 → 1.1.18
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.esm.js +5 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/RadioButton/index.tsx +1 -1
- package/src/icons/IconRadio.tsx +9 -2
- package/src/icons/IconRadioActive.tsx +9 -3
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/TextInput/.DS_Store +0 -0
package/dist/index.esm.js
CHANGED
|
@@ -5032,11 +5032,13 @@ var IconCheckbox = function (props) { return (React$3.createElement(Svg, __assig
|
|
|
5032
5032
|
React$3.createElement(Rect, { x: 2.75, y: 2.75, width: 18.5, height: 18.5, rx: 5.25, fill: "currentColor", stroke: "#A1A5AB", strokeWidth: 1.5 }))); };
|
|
5033
5033
|
|
|
5034
5034
|
var IconRadio = function (props) { return (React$3.createElement(Svg, __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
5035
|
-
React$3.createElement(
|
|
5035
|
+
React$3.createElement(Path, { d: "M4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12Z", fill: "#9F9FA9" }),
|
|
5036
|
+
React$3.createElement(Path, { d: "M6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12Z", fill: "white" }))); };
|
|
5036
5037
|
|
|
5037
5038
|
var IconRadioActive = function (props) { return (React$3.createElement(Svg, __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
5038
|
-
React$3.createElement(
|
|
5039
|
-
React$3.createElement(Circle, { cx: 12, cy: 12, r: 6, fill: "
|
|
5039
|
+
React$3.createElement(Path, { d: "M4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12Z", fill: "#0071ED" }),
|
|
5040
|
+
React$3.createElement(Circle, { cx: "12", cy: "12", r: "6", fill: "white" }),
|
|
5041
|
+
React$3.createElement(Circle, { cx: "12", cy: "12", r: "4", fill: "#0071ED" }))); };
|
|
5040
5042
|
|
|
5041
5043
|
var IconRadioDisable = function (props) { return (React$3.createElement(Svg, __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
5042
5044
|
React$3.createElement(Circle, { cx: 12, cy: 12, r: 9.25, stroke: "#E5E7EB", strokeWidth: 1.5 }),
|