@thecb/components 4.1.16 → 4.1.17

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
@@ -14663,6 +14663,40 @@ var ProfileIcon = function ProfileIcon(_ref) {
14663
14663
 
14664
14664
  var ProfileIcon$1 = themeComponent(ProfileIcon, "Icons", fallbackValues$2, "info");
14665
14665
 
14666
+ var GenericCardLarge = function GenericCardLarge() {
14667
+ return /*#__PURE__*/React__default.createElement("svg", {
14668
+ xmlns: "http://www.w3.org/2000/svg",
14669
+ width: "34",
14670
+ height: "28",
14671
+ viewBox: "0 0 34 28"
14672
+ }, /*#__PURE__*/React__default.createElement("g", {
14673
+ fill: "none",
14674
+ fillRule: "evenodd",
14675
+ stroke: "none",
14676
+ strokeWidth: "1"
14677
+ }, /*#__PURE__*/React__default.createElement("g", {
14678
+ fillRule: "nonzero",
14679
+ transform: "translate(-142 -927)"
14680
+ }, /*#__PURE__*/React__default.createElement("g", {
14681
+ transform: "translate(94 518)"
14682
+ }, /*#__PURE__*/React__default.createElement("g", {
14683
+ transform: "translate(24 350)"
14684
+ }, /*#__PURE__*/React__default.createElement("g", {
14685
+ transform: "translate(0 35)"
14686
+ }, /*#__PURE__*/React__default.createElement("g", {
14687
+ transform: "translate(24 24)"
14688
+ }, /*#__PURE__*/React__default.createElement("path", {
14689
+ fill: "#CACED8",
14690
+ d: "M29.259.699H3.282C1.497.699.035 2.217.035 4.074v20.25c0 1.856 1.462 3.375 3.247 3.375H29.26c1.786 0 3.247-1.52 3.247-3.375V4.074c0-1.857-1.461-3.375-3.247-3.375z"
14691
+ }), /*#__PURE__*/React__default.createElement("path", {
14692
+ fill: "#000",
14693
+ d: "M0.035 6.699H32.50599999999999V13.699H0.035z"
14694
+ }), /*#__PURE__*/React__default.createElement("path", {
14695
+ fill: "#000",
14696
+ d: "M27.51 22.699h-6.244c-.468 0-.937-.47-.937-.938v-3.125c0-.469.469-.937.937-.937h6.244c.469 0 .937.468.937.937v3.125c0 .625-.312.938-.937.938z"
14697
+ }))))))));
14698
+ };
14699
+
14666
14700
  var color$2 = "#15749D";
14667
14701
  var hoverColor$1 = "#116285";
14668
14702
  var activeColor$1 = "#0E506D";
@@ -40560,6 +40594,7 @@ exports.FormattedAddress = FormattedAddress$1;
40560
40594
  exports.FormattedCreditCard = FormattedCreditCard$1;
40561
40595
  exports.Frame = Frame;
40562
40596
  exports.GenericCard = GenericCard;
40597
+ exports.GenericCardLarge = GenericCardLarge;
40563
40598
  exports.GoToEmailIcon = GoToEmailIcon$1;
40564
40599
  exports.Grid = Grid;
40565
40600
  exports.HamburgerButton = HamburgerButton;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "4.1.16",
3
+ "version": "4.1.17",
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,39 @@
1
+ import React from "react";
2
+
3
+ const GenericCardLarge = () => {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="34"
8
+ height="28"
9
+ viewBox="0 0 34 28"
10
+ >
11
+ <g fill="none" fillRule="evenodd" stroke="none" strokeWidth="1">
12
+ <g fillRule="nonzero" transform="translate(-142 -927)">
13
+ <g transform="translate(94 518)">
14
+ <g transform="translate(24 350)">
15
+ <g transform="translate(0 35)">
16
+ <g transform="translate(24 24)">
17
+ <path
18
+ fill="#CACED8"
19
+ d="M29.259.699H3.282C1.497.699.035 2.217.035 4.074v20.25c0 1.856 1.462 3.375 3.247 3.375H29.26c1.786 0 3.247-1.52 3.247-3.375V4.074c0-1.857-1.461-3.375-3.247-3.375z"
20
+ ></path>
21
+ <path
22
+ fill="#000"
23
+ d="M0.035 6.699H32.50599999999999V13.699H0.035z"
24
+ ></path>
25
+ <path
26
+ fill="#000"
27
+ d="M27.51 22.699h-6.244c-.468 0-.937-.47-.937-.938v-3.125c0-.469.469-.937.937-.937h6.244c.469 0 .937.468.937.937v3.125c0 .625-.312.938-.937.938z"
28
+ ></path>
29
+ </g>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ </g>
34
+ </g>
35
+ </svg>
36
+ );
37
+ };
38
+
39
+ export default GenericCardLarge;
@@ -41,6 +41,7 @@ import VoidedIcon from "./VoidedIcon";
41
41
  import StatusUnknownIcon from "./StatusUnknownIcon";
42
42
  import CarrotIcon from "./CarrotIcon";
43
43
  import ProfileIcon from "./ProfileIcon";
44
+ import GenericCardLarge from "./GenericCardLarge";
44
45
 
45
46
  export {
46
47
  AccountsIcon,
@@ -85,5 +86,6 @@ export {
85
86
  VoidedIcon,
86
87
  StatusUnknownIcon,
87
88
  CarrotIcon,
88
- ProfileIcon
89
+ ProfileIcon,
90
+ GenericCardLarge
89
91
  };