@thecb/components 7.9.2 → 7.10.0-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.cjs.js +18 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +18 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/PencilIcon.js +20 -0
- package/src/components/atoms/icons/icons.stories.js +2 -0
- package/src/components/atoms/icons/index.js +2 -0
- package/src/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/molecules/.DS_Store +0 -0
- /package/src/components/atoms/icons/{ExternalLinkicon.js → ExternalLinkIcon.js} +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -14740,6 +14740,23 @@ 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
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14747
|
+
"aria-label": ariaLabel,
|
|
14748
|
+
width: "24px",
|
|
14749
|
+
height: "24px",
|
|
14750
|
+
fill: "none",
|
|
14751
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
14752
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
14753
|
+
fillRule: "evenodd",
|
|
14754
|
+
clipRule: "evenodd",
|
|
14755
|
+
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",
|
|
14756
|
+
fill: "#15749D"
|
|
14757
|
+
}));
|
|
14758
|
+
};
|
|
14759
|
+
|
|
14743
14760
|
var PendingIcon = function PendingIcon() {
|
|
14744
14761
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14745
14762
|
width: "32px",
|
|
@@ -49101,6 +49118,7 @@ exports.PaymentMethodAddIcon = PaymentMethodAddIcon$1;
|
|
|
49101
49118
|
exports.PaymentMethodIcon = PaymentMethodIcon$1;
|
|
49102
49119
|
exports.PaymentSearchIcon = PaymentSearchIcon;
|
|
49103
49120
|
exports.PaymentsIconSmall = PaymentsIconSmall$1;
|
|
49121
|
+
exports.PencilIcon = PencilIcon;
|
|
49104
49122
|
exports.PendingIcon = PendingIcon;
|
|
49105
49123
|
exports.PeriscopeDashboardIframe = PeriscopeDashboardIframe;
|
|
49106
49124
|
exports.PeriscopeFailedIcon = PeriscopeFailedIcon;
|