@thecb/components 10.2.3-beta.0 → 10.2.3
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 +37 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +37 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/TrashIconV2.d.ts +1 -0
- package/src/components/atoms/icons/TrashIconV2.js +41 -0
- package/src/components/atoms/icons/icons.stories.js +3 -1
- package/src/components/atoms/icons/index.d.ts +1 -0
- package/src/components/atoms/icons/index.js +3 -1
package/dist/index.cjs.js
CHANGED
|
@@ -18376,6 +18376,42 @@ var CloseIcon = function CloseIcon(_ref) {
|
|
|
18376
18376
|
})));
|
|
18377
18377
|
};
|
|
18378
18378
|
|
|
18379
|
+
var TrashIconV2 = function TrashIconV2(_ref) {
|
|
18380
|
+
var themeValues = _ref.themeValues,
|
|
18381
|
+
iconFill = _ref.iconFill;
|
|
18382
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
18383
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18384
|
+
width: "18",
|
|
18385
|
+
height: "18",
|
|
18386
|
+
viewBox: "0 0 18 18",
|
|
18387
|
+
fill: "none"
|
|
18388
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
18389
|
+
fillRule: "evenodd",
|
|
18390
|
+
clipRule: "evenodd",
|
|
18391
|
+
d: "M11.5 4H14V6H4V4H6.5L7.21429 3H10.7857L11.5 4ZM6.99048 15C6.25714 15 5.65714 14.4857 5.65714 13.8571L4.85714 7H12.8571L12.0571 13.8571C12.0571 14.4857 11.4571 15 10.7238 15H6.99048Z",
|
|
18392
|
+
fill: iconFill !== null && iconFill !== void 0 ? iconFill : themeValues.singleIconColor
|
|
18393
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
18394
|
+
id: "mask0_4292_11876",
|
|
18395
|
+
style: {
|
|
18396
|
+
maskType: "luminance"
|
|
18397
|
+
},
|
|
18398
|
+
maskUnits: "userSpaceOnUse",
|
|
18399
|
+
x: "4",
|
|
18400
|
+
y: "3",
|
|
18401
|
+
width: "10",
|
|
18402
|
+
height: "12"
|
|
18403
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
18404
|
+
fillRule: "evenodd",
|
|
18405
|
+
clipRule: "evenodd",
|
|
18406
|
+
d: "M11.5 4H14V6H4V4H6.5L7.21429 3H10.7857L11.5 4ZM6.99048 15C6.25714 15 5.65714 14.4857 5.65714 13.8571L4.85714 7H12.8571L12.0571 13.8571C12.0571 14.4857 11.4571 15 10.7238 15H6.99048Z",
|
|
18407
|
+
fill: "white"
|
|
18408
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
18409
|
+
mask: "url(#mask0_4292_11876)"
|
|
18410
|
+
}));
|
|
18411
|
+
};
|
|
18412
|
+
|
|
18413
|
+
var TrashIconV2$1 = themeComponent(TrashIconV2, "Icons", fallbackValues$2, "primary");
|
|
18414
|
+
|
|
18379
18415
|
var color$2 = "#15749D";
|
|
18380
18416
|
var hoverColor$1 = "#116285";
|
|
18381
18417
|
var activeColor$1 = "#0E506D";
|
|
@@ -50556,6 +50592,7 @@ exports.Title = Title$1;
|
|
|
50556
50592
|
exports.ToastNotification = ToastNotification;
|
|
50557
50593
|
exports.ToggleSwitch = ToggleSwitch$1;
|
|
50558
50594
|
exports.TrashIcon = TrashIcon$1;
|
|
50595
|
+
exports.TrashIconV2 = TrashIconV2$1;
|
|
50559
50596
|
exports.TypeaheadInput = TypeaheadInput;
|
|
50560
50597
|
exports.VerifiedEmailIcon = VerifiedEmailIcon$1;
|
|
50561
50598
|
exports.VoidedIcon = VoidedIcon;
|