@thecb/components 7.7.4 → 7.7.5-beta.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 +727 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +712 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/ArrowDownCircleIconSmall.js +47 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconMedium.js +47 -0
- package/src/components/atoms/icons/ArrowLeftCircleIconSmall.js +47 -0
- package/src/components/atoms/icons/ArrowRightCircleIconSmall.js +40 -0
- package/src/components/atoms/icons/ArrowUpCircleIconSmall.js +47 -0
- package/src/components/atoms/icons/BankIconLarge.js +33 -0
- package/src/components/atoms/icons/ChargebackIconMedium.js +34 -0
- package/src/components/atoms/icons/ChargebackIconSmall.js +34 -0
- package/src/components/atoms/icons/ChargebackReversalIconMedium.js +34 -0
- package/src/components/atoms/icons/ChargebackReversalIconSmall.js +34 -0
- package/src/components/atoms/icons/RefundIconMedium.js +40 -0
- package/src/components/atoms/icons/RefundIconSmall.js +40 -0
- package/src/components/atoms/icons/SuccessfulIconMedium.js +53 -0
- package/src/components/atoms/icons/SuccessfulIconSmall.js +59 -0
- package/src/components/atoms/icons/XCircleIconMedium.js +40 -0
- package/src/components/atoms/icons/XCircleIconSmall.js +40 -0
- package/src/components/atoms/icons/index.js +33 -1
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const XCircleIconMedium = ({ color = "#D11053" }) => (
|
|
4
|
+
<svg
|
|
5
|
+
width="24"
|
|
6
|
+
height="24"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
fill="none"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
>
|
|
11
|
+
<circle cx="12" cy="12" r="12" fill={color} />
|
|
12
|
+
<path
|
|
13
|
+
fillRule="evenodd"
|
|
14
|
+
clipRule="evenodd"
|
|
15
|
+
d="M7.35355 8.07502C7.15829 8.27028 7.15829 8.58686 7.35355 8.78212L10.5714 12L7.35355 15.2179C7.15829 15.4131 7.15829 15.7297 7.35355 15.925L8.07502 16.6464C8.27028 16.8417 8.58686 16.8417 8.78212 16.6464L12 13.4286L15.2179 16.6464C15.4131 16.8417 15.7297 16.8417 15.925 16.6464L16.6464 15.925C16.8417 15.7297 16.8417 15.4131 16.6464 15.2179L13.4286 12L16.6464 8.78212C16.8417 8.58686 16.8417 8.27028 16.6464 8.07502L15.925 7.35355C15.7297 7.15829 15.4131 7.15829 15.2179 7.35355L12 10.5714L8.78212 7.35355C8.58686 7.15829 8.27028 7.15829 8.07502 7.35355L7.35355 8.07502Z"
|
|
16
|
+
fill="white"
|
|
17
|
+
/>
|
|
18
|
+
<mask
|
|
19
|
+
id="mask0_0_637"
|
|
20
|
+
style={{ maskType: "luminance" }}
|
|
21
|
+
maskUnits="userSpaceOnUse"
|
|
22
|
+
x="7"
|
|
23
|
+
y="7"
|
|
24
|
+
width="10"
|
|
25
|
+
height="10"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
clipRule="evenodd"
|
|
30
|
+
d="M7.35355 8.07502C7.15829 8.27028 7.15829 8.58686 7.35355 8.78212L10.5714 12L7.35355 15.2179C7.15829 15.4131 7.15829 15.7297 7.35355 15.925L8.07502 16.6464C8.27028 16.8417 8.58686 16.8417 8.78212 16.6464L12 13.4286L15.2179 16.6464C15.4131 16.8417 15.7297 16.8417 15.925 16.6464L16.6464 15.925C16.8417 15.7297 16.8417 15.4131 16.6464 15.2179L13.4286 12L16.6464 8.78212C16.8417 8.58686 16.8417 8.27028 16.6464 8.07502L15.925 7.35355C15.7297 7.15829 15.4131 7.15829 15.2179 7.35355L12 10.5714L8.78212 7.35355C8.58686 7.15829 8.27028 7.15829 8.07502 7.35355L7.35355 8.07502Z"
|
|
31
|
+
fill="white"
|
|
32
|
+
/>
|
|
33
|
+
</mask>
|
|
34
|
+
<g mask="url(#mask0_0_637)">
|
|
35
|
+
<path d="M0 0H24V24H0V0Z" fill="white" />
|
|
36
|
+
</g>
|
|
37
|
+
</svg>
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
export default XCircleIconMedium;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const XCircleIconSmall = ({ color = "#D11053" }) => (
|
|
4
|
+
<svg
|
|
5
|
+
width="21"
|
|
6
|
+
height="20"
|
|
7
|
+
viewBox="0 0 21 20"
|
|
8
|
+
fill="none"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
>
|
|
11
|
+
<circle cx="10.5" cy="10" r="10" fill={color} />
|
|
12
|
+
<path
|
|
13
|
+
fillRule="evenodd"
|
|
14
|
+
clipRule="evenodd"
|
|
15
|
+
d="M13.8298 6.18691C13.6345 5.99165 13.3179 5.99165 13.1227 6.18691L10.5 8.80955L7.87739 6.18691C7.68213 5.99165 7.36554 5.99165 7.17028 6.18691L6.68691 6.67028C6.49165 6.86554 6.49165 7.18213 6.68691 7.37739L9.30955 10L6.68691 12.6227C6.49165 12.8179 6.49165 13.1345 6.68691 13.3298L7.17028 13.8131C7.36554 14.0084 7.68213 14.0084 7.87739 13.8131L10.5 11.1905L13.1227 13.8131C13.3179 14.0084 13.6345 14.0084 13.8298 13.8131L14.3131 13.3298C14.5084 13.1345 14.5084 12.8179 14.3131 12.6227L11.6905 10L14.3131 7.37739C14.5084 7.18213 14.5084 6.86554 14.3131 6.67028L13.8298 6.18691Z"
|
|
16
|
+
fill="white"
|
|
17
|
+
/>
|
|
18
|
+
<mask
|
|
19
|
+
id="mask0_1409_671"
|
|
20
|
+
style={{ maskType: "luminance" }}
|
|
21
|
+
maskUnits="userSpaceOnUse"
|
|
22
|
+
x="6"
|
|
23
|
+
y="6"
|
|
24
|
+
width="9"
|
|
25
|
+
height="8"
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
clipRule="evenodd"
|
|
30
|
+
d="M13.8298 6.18691C13.6345 5.99165 13.3179 5.99165 13.1227 6.18691L10.5 8.80955L7.87739 6.18691C7.68213 5.99165 7.36554 5.99165 7.17028 6.18691L6.68691 6.67028C6.49165 6.86554 6.49165 7.18213 6.68691 7.37739L9.30955 10L6.68691 12.6227C6.49165 12.8179 6.49165 13.1345 6.68691 13.3298L7.17028 13.8131C7.36554 14.0084 7.68213 14.0084 7.87739 13.8131L10.5 11.1905L13.1227 13.8131C13.3179 14.0084 13.6345 14.0084 13.8298 13.8131L14.3131 13.3298C14.5084 13.1345 14.5084 12.8179 14.3131 12.6227L11.6905 10L14.3131 7.37739C14.5084 7.18213 14.5084 6.86554 14.3131 6.67028L13.8298 6.18691Z"
|
|
31
|
+
fill="white"
|
|
32
|
+
/>
|
|
33
|
+
</mask>
|
|
34
|
+
<g mask="url(#mask0_1409_671)">
|
|
35
|
+
<path d="M0.5 0H20.5V20H0.5V0Z" fill="white" />
|
|
36
|
+
</g>
|
|
37
|
+
</svg>
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
export default XCircleIconSmall;
|
|
@@ -17,6 +17,7 @@ import AccountNumberImage from "./AccountNumberImage";
|
|
|
17
17
|
import RoutingNumberImage from "./RoutingNumberImage";
|
|
18
18
|
import CheckmarkIcon from "./CheckmarkIcon";
|
|
19
19
|
import BankIcon from "./BankIcon";
|
|
20
|
+
import BankIconLarge from "./BankIconLarge";
|
|
20
21
|
import GenericCard from "./GenericCard";
|
|
21
22
|
import IconAdd from "./IconAdd";
|
|
22
23
|
import IconQuitLarge from "./IconQuitLarge";
|
|
@@ -63,6 +64,21 @@ import ProfileImage from "./ProfileImage";
|
|
|
63
64
|
import RevenueManagementImage from "./RevenueManagementImage";
|
|
64
65
|
import FindIconSmall from "./FindIconSmall";
|
|
65
66
|
import HistoryIconSmall from "./HistoryIconSmall";
|
|
67
|
+
import ChargebackIconSmall from "./ChargebackIconSmall";
|
|
68
|
+
import ChargebackReversalIconSmall from "./ChargebackReversalIconSmall";
|
|
69
|
+
import RefundIconSmall from "./RefundIconSmall";
|
|
70
|
+
import XCircleIconSmall from "./XCircleIconSmall";
|
|
71
|
+
import SuccessfulIconSmall from "./SuccessfulIconSmall";
|
|
72
|
+
import ArrowLeftCircleIconSmall from "./ArrowLeftCircleIconSmall";
|
|
73
|
+
import ArrowRightCircleIconSmall from "./ArrowRightCircleIconSmall";
|
|
74
|
+
import ArrowUpCircleIconSmall from "./ArrowUpCircleIconSmall";
|
|
75
|
+
import ArrowDownCircleIconSmall from "./ArrowDownCircleIconSmall";
|
|
76
|
+
import SuccessfulIconMedium from "./SuccessfulIconMedium";
|
|
77
|
+
import XCircleIconMedium from "./XCircleIconMedium";
|
|
78
|
+
import RefundIconMedium from "./RefundIconMedium";
|
|
79
|
+
import ArrowLeftCircleIconMedium from "./ArrowLeftCircleIconMedium";
|
|
80
|
+
import ChargebackIconMedium from "./ChargebackIconMedium";
|
|
81
|
+
import ChargebackReversalIconMedium from "./ChargebackReversalIconMedium";
|
|
66
82
|
|
|
67
83
|
export {
|
|
68
84
|
AccountsIcon,
|
|
@@ -84,6 +100,7 @@ export {
|
|
|
84
100
|
RoutingNumberImage,
|
|
85
101
|
CheckmarkIcon,
|
|
86
102
|
BankIcon,
|
|
103
|
+
BankIconLarge,
|
|
87
104
|
GenericCard,
|
|
88
105
|
IconAdd,
|
|
89
106
|
IconQuitLarge,
|
|
@@ -129,5 +146,20 @@ export {
|
|
|
129
146
|
ProfileImage,
|
|
130
147
|
RevenueManagementImage,
|
|
131
148
|
FindIconSmall,
|
|
132
|
-
HistoryIconSmall
|
|
149
|
+
HistoryIconSmall,
|
|
150
|
+
ChargebackIconSmall,
|
|
151
|
+
ChargebackReversalIconSmall,
|
|
152
|
+
RefundIconSmall,
|
|
153
|
+
XCircleIconSmall,
|
|
154
|
+
SuccessfulIconSmall,
|
|
155
|
+
ArrowLeftCircleIconSmall,
|
|
156
|
+
ArrowRightCircleIconSmall,
|
|
157
|
+
ArrowUpCircleIconSmall,
|
|
158
|
+
ArrowDownCircleIconSmall,
|
|
159
|
+
SuccessfulIconMedium,
|
|
160
|
+
XCircleIconMedium,
|
|
161
|
+
RefundIconMedium,
|
|
162
|
+
ArrowLeftCircleIconMedium,
|
|
163
|
+
ChargebackIconMedium,
|
|
164
|
+
ChargebackReversalIconMedium
|
|
133
165
|
};
|