@thecb/components 4.1.7 → 4.1.8

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 CHANGED
@@ -14696,6 +14696,30 @@ var VoidedIcon = function VoidedIcon() {
14696
14696
  }))));
14697
14697
  };
14698
14698
 
14699
+ var StatusUnknownIcon = function StatusUnknownIcon() {
14700
+ return /*#__PURE__*/React__default.createElement("svg", {
14701
+ width: "32px",
14702
+ height: "32px",
14703
+ viewBox: "0 0 32 32",
14704
+ version: "1.1",
14705
+ xmlns: "http://www.w3.org/2000/svg",
14706
+ xmlnsXlink: "http://www.w3.org/1999/xlink"
14707
+ }, /*#__PURE__*/React__default.createElement("g", {
14708
+ id: "STOR-3203",
14709
+ stroke: "none",
14710
+ strokeWidth: "1",
14711
+ fill: "none",
14712
+ fillRule: "evenodd"
14713
+ }, /*#__PURE__*/React__default.createElement("g", {
14714
+ id: "Icons",
14715
+ transform: "translate(-64.000000, -736.000000)",
14716
+ fill: "#6E727E"
14717
+ }, /*#__PURE__*/React__default.createElement("path", {
14718
+ d: "M80,736 C88.836556,736 96,743.163444 96,752 C96,760.836556 88.836556,768 80,768 C71.163444,768 64,760.836556 64,752 C64,743.163444 71.163444,736 80,736 Z M80.85,757 L78.85,757 L78.85,759 L80.85,759 L80.85,757 Z M80.1460007,745 C78.0670004,745 76.4650001,746.017 75.7,747.799 L75.7,747.799 L77.5900003,748.294001 L77.6622133,748.125985 C78.1059448,747.191195 79.1250006,746.557 80.1280007,746.557 C81.2800009,746.557 82.099001,747.187 82.099001,748.195001 C82.099001,750.301001 78.9670005,751.093001 78.9670005,754.459002 L78.9670005,754.459002 L80.7670008,754.459002 L80.7792965,754.169347 C81.0061162,751.541289 84.2950014,750.971966 84.2950014,748.087001 C84.2950014,746.341 82.6480011,745 80.1460007,745 Z",
14719
+ id: "status-icon---default-/-unknown"
14720
+ }))));
14721
+ };
14722
+
14699
14723
  var color$2 = "#15749D";
14700
14724
  var hoverColor$1 = "#116285";
14701
14725
  var activeColor$1 = "#0E506D";
@@ -40748,6 +40772,7 @@ exports.SolidDivider = SolidDivider$1;
40748
40772
  exports.Spinner = Spinner$2;
40749
40773
  exports.Stack = Stack;
40750
40774
  exports.StateProvinceDropdown = FormStateDropdown;
40775
+ exports.StatusUnknownIcon = StatusUnknownIcon;
40751
40776
  exports.SuccessfulIcon = SuccessfulIcon;
40752
40777
  exports.Switcher = Switcher;
40753
40778
  exports.TabSidebar = TabSidebar$1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "4.1.7",
3
+ "version": "4.1.8",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+
3
+ const StatusUnknownIcon = () => (
4
+ <svg
5
+ width="32px"
6
+ height="32px"
7
+ viewBox="0 0 32 32"
8
+ version="1.1"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlnsXlink="http://www.w3.org/1999/xlink"
11
+ >
12
+ <g
13
+ id="STOR-3203"
14
+ stroke="none"
15
+ strokeWidth="1"
16
+ fill="none"
17
+ fillRule="evenodd"
18
+ >
19
+ <g
20
+ id="Icons"
21
+ transform="translate(-64.000000, -736.000000)"
22
+ fill="#6E727E"
23
+ >
24
+ <path
25
+ d="M80,736 C88.836556,736 96,743.163444 96,752 C96,760.836556 88.836556,768 80,768 C71.163444,768 64,760.836556 64,752 C64,743.163444 71.163444,736 80,736 Z M80.85,757 L78.85,757 L78.85,759 L80.85,759 L80.85,757 Z M80.1460007,745 C78.0670004,745 76.4650001,746.017 75.7,747.799 L75.7,747.799 L77.5900003,748.294001 L77.6622133,748.125985 C78.1059448,747.191195 79.1250006,746.557 80.1280007,746.557 C81.2800009,746.557 82.099001,747.187 82.099001,748.195001 C82.099001,750.301001 78.9670005,751.093001 78.9670005,754.459002 L78.9670005,754.459002 L80.7670008,754.459002 L80.7792965,754.169347 C81.0061162,751.541289 84.2950014,750.971966 84.2950014,748.087001 C84.2950014,746.341 82.6480011,745 80.1460007,745 Z"
26
+ id="status-icon---default-/-unknown"
27
+ ></path>
28
+ </g>
29
+ </g>
30
+ </svg>
31
+ );
32
+
33
+ export default StatusUnknownIcon;
@@ -36,7 +36,8 @@ import {
36
36
  RejectedIcon,
37
37
  RejectedVelocityIcon,
38
38
  SuccessfulIcon,
39
- VoidedIcon
39
+ VoidedIcon,
40
+ StatusUnknownIcon
40
41
  } from "./index";
41
42
 
42
43
  const story = page({
@@ -80,3 +81,4 @@ export const rejectedIcon = () => <RejectedIcon />;
80
81
  export const rejectedVelocityIcon = () => <RejectedVelocityIcon />;
81
82
  export const successfulIcon = () => <SuccessfulIcon />;
82
83
  export const voidedIcon = () => <VoidedIcon />;
84
+ export const statusUnknownIcon = () => <StatusUnknownIcon />;
@@ -38,6 +38,7 @@ import RejectedIcon from "./RejectedIcon";
38
38
  import RejectedVelocityIcon from "./RejectedVelocityIcon";
39
39
  import SuccessfulIcon from "./SuccessfulIcon";
40
40
  import VoidedIcon from "./VoidedIcon";
41
+ import StatusUnknownIcon from "./StatusUnknownIcon";
41
42
 
42
43
  export {
43
44
  AccountsIcon,
@@ -79,5 +80,6 @@ export {
79
80
  RejectedIcon,
80
81
  RejectedVelocityIcon,
81
82
  SuccessfulIcon,
82
- VoidedIcon
83
+ VoidedIcon,
84
+ StatusUnknownIcon
83
85
  };