@thecb/components 7.7.5-beta.1 → 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.
@@ -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;
@@ -64,6 +64,21 @@ import ProfileImage from "./ProfileImage";
64
64
  import RevenueManagementImage from "./RevenueManagementImage";
65
65
  import FindIconSmall from "./FindIconSmall";
66
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";
67
82
 
68
83
  export {
69
84
  AccountsIcon,
@@ -131,5 +146,20 @@ export {
131
146
  ProfileImage,
132
147
  RevenueManagementImage,
133
148
  FindIconSmall,
134
- 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
135
165
  };