@thecb/components 7.10.1-beta.9 → 7.10.2
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.cjs.js +22 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +22 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/PencilIcon.js +22 -0
- package/src/components/atoms/icons/icons.stories.js +2 -0
- package/src/components/atoms/icons/index.js +2 -0
- package/src/components/molecules/radio-section/RadioSection.js +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -14740,6 +14740,26 @@ var FailedIcon = function FailedIcon() {
|
|
|
14740
14740
|
}))));
|
|
14741
14741
|
};
|
|
14742
14742
|
|
|
14743
|
+
var PencilIcon = function PencilIcon(_ref) {
|
|
14744
|
+
var _ref$ariaLabel = _ref.ariaLabel,
|
|
14745
|
+
ariaLabel = _ref$ariaLabel === void 0 ? "Edit" : _ref$ariaLabel,
|
|
14746
|
+
themeValues = _ref.themeValues;
|
|
14747
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14748
|
+
"aria-label": ariaLabel,
|
|
14749
|
+
width: "24px",
|
|
14750
|
+
height: "24px",
|
|
14751
|
+
fill: "none",
|
|
14752
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
14753
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
14754
|
+
fillRule: "evenodd",
|
|
14755
|
+
clipRule: "evenodd",
|
|
14756
|
+
d: "M19.74 6.84a.885.885 0 0 1 0 1.253l-1.626 1.626-3.333-3.333 1.626-1.626a.885.885 0 0 1 1.253 0l2.08 2.08ZM4 20.5v-3.333l9.83-9.83 3.333 3.333-9.83 9.83H4Z",
|
|
14757
|
+
fill: themeValues.subIconColor
|
|
14758
|
+
}));
|
|
14759
|
+
};
|
|
14760
|
+
|
|
14761
|
+
var PencilIcon$1 = themeComponent(PencilIcon, "Icons", fallbackValues$2, "info");
|
|
14762
|
+
|
|
14743
14763
|
var PendingIcon = function PendingIcon() {
|
|
14744
14764
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14745
14765
|
width: "32px",
|
|
@@ -48059,7 +48079,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48059
48079
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
48060
48080
|
justify: "space-between",
|
|
48061
48081
|
align: "center",
|
|
48062
|
-
childGap: "
|
|
48082
|
+
childGap: "1px",
|
|
48063
48083
|
nowrap: true
|
|
48064
48084
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
48065
48085
|
justify: "flex-start",
|
|
@@ -49297,6 +49317,7 @@ exports.PaymentMethodAddIcon = PaymentMethodAddIcon$1;
|
|
|
49297
49317
|
exports.PaymentMethodIcon = PaymentMethodIcon$1;
|
|
49298
49318
|
exports.PaymentSearchIcon = PaymentSearchIcon;
|
|
49299
49319
|
exports.PaymentsIconSmall = PaymentsIconSmall$1;
|
|
49320
|
+
exports.PencilIcon = PencilIcon$1;
|
|
49300
49321
|
exports.PendingIcon = PendingIcon;
|
|
49301
49322
|
exports.PeriscopeDashboardIframe = PeriscopeDashboardIframe;
|
|
49302
49323
|
exports.PeriscopeFailedIcon = PeriscopeFailedIcon;
|