strapi-plugin-payone-provider 1.6.1 → 1.6.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.
Files changed (46) hide show
  1. package/admin/src/pages/App/components/ApplePayBtn.jsx +15 -13
  2. package/admin/src/pages/App/components/PaymentActionsPanel.jsx +68 -17
  3. package/admin/src/pages/App/components/paymentActions/AuthorizationForm.jsx +4 -12
  4. package/admin/src/pages/App/components/paymentActions/PaymentMethodSelector.jsx +163 -86
  5. package/admin/src/pages/App/components/paymentActions/PreauthorizationForm.jsx +21 -11
  6. package/admin/src/pages/hooks/usePaymentActions.js +0 -172
  7. package/admin/src/pages/utils/paymentUtils.js +2 -2
  8. package/package.json +1 -1
  9. package/server/bootstrap.js +0 -19
  10. package/server/services/transactionService.js +0 -28
  11. package/admin/src/components/Initializer/index.js +0 -16
  12. package/admin/src/components/PluginIcon/index.js +0 -6
  13. package/admin/src/pages/App/components/AppHeader.js +0 -55
  14. package/admin/src/pages/App/components/AppTabs.js +0 -158
  15. package/admin/src/pages/App/components/ApplePayButton.js +0 -950
  16. package/admin/src/pages/App/components/ApplePayConfig.js +0 -364
  17. package/admin/src/pages/App/components/ApplePayConfigPanel.js +0 -81
  18. package/admin/src/pages/App/components/ConfigurationPanel.js +0 -280
  19. package/admin/src/pages/App/components/DocsPanel.js +0 -1057
  20. package/admin/src/pages/App/components/GooglePayConfig.js +0 -217
  21. package/admin/src/pages/App/components/GooglePayConfigPanel.js +0 -82
  22. package/admin/src/pages/App/components/GooglePaybutton.js +0 -300
  23. package/admin/src/pages/App/components/HistoryPanel.js +0 -285
  24. package/admin/src/pages/App/components/PaymentActionsPanel.js +0 -190
  25. package/admin/src/pages/App/components/StatusBadge.js +0 -24
  26. package/admin/src/pages/App/components/TransactionHistoryItem.js +0 -377
  27. package/admin/src/pages/App/components/icons/BankIcon.js +0 -10
  28. package/admin/src/pages/App/components/icons/ChevronDownIcon.js +0 -9
  29. package/admin/src/pages/App/components/icons/ChevronUpIcon.js +0 -9
  30. package/admin/src/pages/App/components/icons/CreditCardIcon.js +0 -9
  31. package/admin/src/pages/App/components/icons/ErrorIcon.js +0 -10
  32. package/admin/src/pages/App/components/icons/InfoIcon.js +0 -9
  33. package/admin/src/pages/App/components/icons/PaymentIcon.js +0 -10
  34. package/admin/src/pages/App/components/icons/PendingIcon.js +0 -9
  35. package/admin/src/pages/App/components/icons/PersonIcon.js +0 -9
  36. package/admin/src/pages/App/components/icons/SuccessIcon.js +0 -9
  37. package/admin/src/pages/App/components/icons/WalletIcon.js +0 -9
  38. package/admin/src/pages/App/components/icons/index.js +0 -11
  39. package/admin/src/pages/App/components/paymentActions/AuthorizationForm.js +0 -195
  40. package/admin/src/pages/App/components/paymentActions/CaptureForm.js +0 -65
  41. package/admin/src/pages/App/components/paymentActions/CardDetailsInput.js +0 -191
  42. package/admin/src/pages/App/components/paymentActions/PaymentMethodSelector.js +0 -156
  43. package/admin/src/pages/App/components/paymentActions/PaymentResult.js +0 -148
  44. package/admin/src/pages/App/components/paymentActions/PreauthorizationForm.js +0 -199
  45. package/admin/src/pages/App/components/paymentActions/RefundForm.js +0 -90
  46. package/admin/src/pages/App/index.js +0 -127
@@ -1,377 +0,0 @@
1
- import React, { useState } from 'react';
2
- import {
3
- Box,
4
- Card,
5
- CardBody,
6
- Flex,
7
- Stack,
8
- Typography,
9
- Badge,
10
- Button,
11
- } from '@strapi/design-system';
12
- import {
13
- ChevronDownIcon,
14
- ChevronUpIcon,
15
- } from './icons';
16
- const TransactionHistoryItem = ({ transaction }) => {
17
- const [isExpanded, setIsExpanded] = useState(false);
18
-
19
-
20
- const getStatusColor = (status) => {
21
- switch (status) {
22
- case 'APPROVED':
23
- return 'success';
24
- case 'ERROR':
25
- return 'danger';
26
- case 'PENDING':
27
- return 'warning';
28
- default:
29
- return 'neutral';
30
- }
31
- };
32
-
33
-
34
- const getPaymentMethodName = (clearingtype, wallettype) => {
35
- switch (clearingtype) {
36
- case 'cc':
37
- return 'Credit Card';
38
- case 'sb':
39
- return 'Online Banking';
40
- case 'wlt':
41
- return wallettype === 'PPE' ? 'PayPal' : 'Wallet';
42
- case 'elv':
43
- return 'Direct Debit (SEPA)';
44
- default:
45
- return 'Unknown';
46
- }
47
- };
48
-
49
- const formatAmount = (amount, currency) => {
50
- return `${(amount / 100).toFixed(2)} ${currency}`;
51
- };
52
-
53
- const formatDate = (dateString) => {
54
- return new Date(dateString).toLocaleString('de-DE', {
55
- year: 'numeric',
56
- month: '2-digit',
57
- day: '2-digit',
58
- hour: '2-digit',
59
- minute: '2-digit',
60
- });
61
- };
62
-
63
- const getCardTypeName = (cardtype) => {
64
- switch (cardtype) {
65
- case 'V':
66
- return 'Visa';
67
- case 'M':
68
- return 'Mastercard';
69
- case 'A':
70
- return 'American Express';
71
- default:
72
- return cardtype || 'Unknown';
73
- }
74
- };
75
-
76
- return (
77
- <Card
78
- className="payment-transaction-item"
79
- background="neutral0"
80
- hasRadius
81
- shadow="filterShadow"
82
- style={{
83
- marginBottom: '16px',
84
- }}
85
- >
86
- <CardBody padding={6} style={{ display: "flex", flexDirection: 'column', gap: '6px' }}>
87
- {/* Main Values in Column Format */}
88
- <Stack spacing={3} marginBottom={4}>
89
- {/* Reference */}
90
- <Flex alignItems="center" gap={2}>
91
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
92
- Reference:
93
- </Typography>
94
- <Typography variant="pi" textColor="neutral800">
95
- {transaction.reference}
96
- </Typography>
97
- </Flex>
98
- {/* Date */}
99
- <Flex alignItems="center" gap={2}>
100
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
101
- Date:
102
- </Typography>
103
- <Typography variant="pi" textColor="neutral800">
104
- {formatDate(transaction.timestamp)}
105
- </Typography>
106
- </Flex>
107
-
108
- {/* Payment Method */}
109
- <Flex alignItems="center" gap={2}>
110
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
111
- Method:
112
- </Typography>
113
- <Typography variant="pi" textColor="neutral800">
114
- {getPaymentMethodName(transaction.raw_request?.clearingtype, transaction.raw_request?.wallettype)}
115
- </Typography>
116
- {transaction.txid && (
117
- <>
118
- <Typography variant="pi" textColor="neutral500">•</Typography>
119
- <Typography variant="pi" textColor="neutral600">
120
- TX: {transaction.txid}
121
- </Typography>
122
- </>
123
- )}
124
- </Flex>
125
-
126
- {/* Amount */}
127
- <Flex alignItems="center" gap={2}>
128
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
129
- Amount:
130
- </Typography>
131
- <Typography variant="pi" fontWeight="bold" textColor="primary600" fontSize={2}>
132
- {formatAmount(transaction.amount, transaction.currency)}
133
- </Typography>
134
- <Badge
135
- backgroundColor={getStatusColor(transaction.status)}
136
- textColor="neutral0"
137
- >
138
- {transaction.status}
139
- </Badge>
140
- </Flex>
141
- </Stack>
142
-
143
-
144
-
145
- {/* Expand/Collapse Button */}
146
- <Flex justifyContent="center">
147
- <Button
148
- size="S"
149
- onClick={() => setIsExpanded(!isExpanded)}
150
- startIcon={isExpanded ? <ChevronUpIcon size={16} /> : <ChevronDownIcon size={16} />}
151
- className="payment-button payment-button-primary"
152
- >
153
- {isExpanded ? 'Hide Details' : 'Show Details'}
154
- </Button>
155
- </Flex>
156
-
157
- {/* Expanded Details */}
158
- {isExpanded && (
159
- <Box marginTop={4} style={{ animation: 'fadeIn 0.3s ease-out' }}>
160
- <Stack spacing={4}>
161
- {/* Error Message */}
162
- {transaction.status === 'ERROR' && (
163
- <Box
164
- marginBottom={4}
165
- padding={3}
166
- background="danger100"
167
- hasRadius
168
- className="payment-alert"
169
- style={{
170
- border: '1px solid',
171
- borderColor: 'var(--strapi-colors-danger200)',
172
- }}
173
- >
174
- <Typography variant="pi" fontWeight="bold" textColor="danger600" marginBottom={1}>
175
- Error: {transaction.error_message}
176
- </Typography>
177
- {transaction.customer_message && (
178
- <Typography variant="pi" textColor="danger600">
179
- Customer Message: {transaction.customer_message}
180
- </Typography>
181
- )}
182
- </Box>
183
- )}
184
- {/* Customer Information */}
185
- <Box>
186
- <Flex alignItems="center" gap={2} marginBottom={3}>
187
- <Typography variant="pi" fontWeight="bold" textColor="neutral800">
188
- Customer Information
189
- </Typography>
190
- </Flex>
191
- <Box paddingLeft={4}>
192
- <Stack spacing={2}>
193
- <Flex justifyContent="space-between" gap={3}>
194
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
195
- Name:
196
- </Typography>
197
- <Typography variant="pi" textColor="neutral800">
198
- {transaction.raw_request?.firstname} {transaction.raw_request?.lastname}
199
- </Typography>
200
- </Flex>
201
- <Flex justifyContent="space-between" gap={3}>
202
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
203
- Email:
204
- </Typography>
205
- <Typography variant="pi" textColor="neutral800">
206
- {transaction.raw_request?.email}
207
- </Typography>
208
- </Flex>
209
- <Flex justifyContent="space-between" gap={3}>
210
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
211
- Phone:
212
- </Typography>
213
- <Typography variant="pi" textColor="neutral800">
214
- {transaction.raw_request?.telephonenumber}
215
- </Typography>
216
- </Flex>
217
- <Flex justifyContent="space-between" gap={3}>
218
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
219
- Address:
220
- </Typography>
221
- <Typography variant="pi" textColor="neutral800">
222
- {transaction.raw_request?.street}, {transaction.raw_request?.zip} {transaction.raw_request?.city}
223
- </Typography>
224
- </Flex>
225
- <Flex justifyContent="space-between" gap={3}>
226
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
227
- Country:
228
- </Typography>
229
- <Typography variant="pi" textColor="neutral800">
230
- {transaction.raw_request?.country}
231
- </Typography>
232
- </Flex>
233
- </Stack>
234
- </Box>
235
- </Box>
236
-
237
- {/* Payment Method Details */}
238
- <Box>
239
- <Flex alignItems="center" gap={2} marginBottom={3}>
240
- <Typography variant="pi" fontWeight="bold" textColor="neutral800">
241
- Payment Method Details
242
- </Typography>
243
- </Flex>
244
- <Box paddingLeft={4}>
245
- <Stack spacing={2}>
246
- <Flex justifyContent="space-between" gap={3}>
247
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
248
- Type:
249
- </Typography>
250
- <Typography variant="pi" textColor="neutral800">
251
- {getPaymentMethodName(transaction.raw_request?.clearingtype, transaction.raw_request?.wallettype)}
252
- </Typography>
253
- </Flex>
254
-
255
- {transaction.raw_request?.clearingtype === 'cc' && (
256
- <>
257
- <Flex justifyContent="space-between" gap={3}>
258
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
259
- Card Type:
260
- </Typography>
261
- <Typography variant="pi" textColor="neutral800">
262
- {getCardTypeName(transaction.raw_request?.cardtype)}
263
- </Typography>
264
- </Flex>
265
- <Flex justifyContent="space-between" gap={3}>
266
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
267
- Card Number:
268
- </Typography>
269
- <Typography variant="pi" textColor="neutral800">
270
- **** **** **** {transaction.raw_request?.cardpan?.slice(-4)}
271
- </Typography>
272
- </Flex>
273
- <Flex justifyContent="space-between" gap={3}>
274
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
275
- Expiry:
276
- </Typography>
277
- <Typography variant="pi" textColor="neutral800">
278
- {transaction.raw_request?.cardexpiredate}
279
- </Typography>
280
- </Flex>
281
- </>
282
- )}
283
-
284
- {transaction.raw_request?.clearingtype === 'wlt' && transaction.raw_request?.wallettype && (
285
- <Flex justifyContent="space-between" gap={3}>
286
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
287
- Wallet Type:
288
- </Typography>
289
- <Typography variant="pi" textColor="neutral800">
290
- {transaction.raw_request.wallettype}
291
- </Typography>
292
- </Flex>
293
- )}
294
-
295
- {transaction.raw_request?.clearingtype === 'sb' && (
296
- <>
297
- <Flex justifyContent="space-between" gap={3}>
298
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
299
- Bank Transfer Type:
300
- </Typography>
301
- <Typography variant="pi" textColor="neutral800">
302
- {transaction.raw_request?.onlinebanktransfertype}
303
- </Typography>
304
- </Flex>
305
- <Flex justifyContent="space-between" gap={3}>
306
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
307
- Bank Country:
308
- </Typography>
309
- <Typography variant="pi" textColor="neutral800">
310
- {transaction.raw_request?.bankcountry}
311
- </Typography>
312
- </Flex>
313
- </>
314
- )}
315
- </Stack>
316
- </Box>
317
- </Box>
318
-
319
- {/* Technical Details */}
320
- <Box>
321
- <Typography variant="pi" fontWeight="bold" textColor="neutral800" marginBottom={3}>
322
- Technical Details
323
- </Typography>
324
- <Box paddingLeft={4}>
325
- <Stack spacing={2}>
326
- <Flex justifyContent="space-between" gap={3}>
327
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
328
- Request Type:
329
- </Typography>
330
- <Typography variant="pi" textColor="neutral800">
331
- {transaction.request_type}
332
- </Typography>
333
- </Flex>
334
- <Flex justifyContent="space-between" gap={3}>
335
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
336
- Mode:
337
- </Typography>
338
- <Typography variant="pi" textColor="neutral800">
339
- {transaction.raw_request?.mode}
340
- </Typography>
341
- </Flex>
342
- <Flex justifyContent="space-between" gap={3}>
343
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
344
- IP Address:
345
- </Typography>
346
- <Typography variant="pi" textColor="neutral800">
347
- {transaction.raw_request?.ip}
348
- </Typography>
349
- </Flex>
350
- <Flex justifyContent="space-between" gap={3}>
351
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
352
- Language:
353
- </Typography>
354
- <Typography variant="pi" textColor="neutral800">
355
- {transaction.raw_request?.language}
356
- </Typography>
357
- </Flex>
358
- <Flex justifyContent="space-between" gap={3}>
359
- <Typography variant="pi" textColor="neutral600" fontWeight="medium">
360
- Customer Present:
361
- </Typography>
362
- <Typography variant="pi" textColor="neutral800">
363
- {transaction.raw_request?.customer_is_present}
364
- </Typography>
365
- </Flex>
366
- </Stack>
367
- </Box>
368
- </Box>
369
- </Stack>
370
- </Box>
371
- )}
372
- </CardBody>
373
- </Card>
374
- );
375
- };
376
-
377
- export default TransactionHistoryItem;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
-
3
- const BankIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z" fill={color} />
6
- <path d="M12 6l-1.5 3L7 8.5l2.5 2.5L8 14l4-2.5L16 14l-1.5-3L18 8.5l-3.5.5L12 6z" fill={color} />
7
- </svg>
8
- );
9
-
10
- export default BankIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const ChevronDownIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default ChevronDownIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const ChevronUpIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default ChevronUpIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const CreditCardIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default CreditCardIcon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
-
3
- const ErrorIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill={color} />
6
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" fill={color} />
7
- </svg>
8
- );
9
-
10
- export default ErrorIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const InfoIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default InfoIcon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
-
3
- const PaymentIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M2 8h20v12H2V8zm2 2v8h16V10H4z" fill={color} />
6
- <path d="M2 4h20v2H2V4z" fill={color} />
7
- </svg>
8
- );
9
-
10
- export default PaymentIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const PendingIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M12.5 7H11V13L16.25 16.15L17 14.92L12.5 12.25V7Z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default PendingIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const PersonIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default PersonIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const SuccessIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default SuccessIcon;
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
-
3
- const WalletIcon = ({ size = 16, color = 'currentColor' }) => (
4
- <svg width={size} height={size} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path d="M21 7.28V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-2.28c.59-.35 1-.98 1-1.72V9c0-.74-.41-1.37-1-1.72zM20 9v6h-7V9h7zM5 19V5h14v2h-6c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2H5z" fill={color} />
6
- </svg>
7
- );
8
-
9
- export default WalletIcon;
@@ -1,11 +0,0 @@
1
- export { default as PaymentIcon } from './PaymentIcon';
2
- export { default as PersonIcon } from './PersonIcon';
3
- export { default as CreditCardIcon } from './CreditCardIcon';
4
- export { default as BankIcon } from './BankIcon';
5
- export { default as WalletIcon } from './WalletIcon';
6
- export { default as ErrorIcon } from './ErrorIcon';
7
- export { default as SuccessIcon } from './SuccessIcon';
8
- export { default as PendingIcon } from './PendingIcon';
9
- export { default as InfoIcon } from './InfoIcon';
10
- export { default as ChevronDownIcon } from './ChevronDownIcon';
11
- export { default as ChevronUpIcon } from './ChevronUpIcon';