react-native-exp-fig 2.0.0 → 2.0.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 (68) hide show
  1. package/lib/commonjs/components/box/index.js +4 -4
  2. package/lib/commonjs/components/card-loading/index.js +26 -24
  3. package/lib/commonjs/components/card-loading/index.js.map +1 -1
  4. package/lib/commonjs/components/header-profile/index.js +69 -63
  5. package/lib/commonjs/components/header-profile/index.js.map +1 -1
  6. package/lib/commonjs/components/history-details/index.js +4 -4
  7. package/lib/commonjs/components/notification-card/index.js +12 -7
  8. package/lib/commonjs/components/notification-card/index.js.map +1 -1
  9. package/lib/commonjs/components/user-profile/index.js +9 -10
  10. package/lib/commonjs/components/user-profile/index.js.map +1 -1
  11. package/lib/commonjs/index.js +3 -3
  12. package/lib/commonjs/index.js.map +1 -1
  13. package/lib/commonjs/stories/header-profile/header-profile.stories.js +7 -17
  14. package/lib/commonjs/stories/header-profile/header-profile.stories.js.map +1 -1
  15. package/lib/commonjs/stories/notification-card/notification-card.stories.js +200 -0
  16. package/lib/commonjs/stories/notification-card/notification-card.stories.js.map +1 -0
  17. package/lib/commonjs/stories/notification-loading/notification-loading.stories.js.map +1 -1
  18. package/lib/commonjs/styles/theme/theme.js +5 -5
  19. package/lib/commonjs/utils/status-color/return-color.js +2 -2
  20. package/lib/commonjs/utils/status-color/return-color.js.map +1 -1
  21. package/lib/module/components/box/index.js +4 -4
  22. package/lib/module/components/card-loading/index.js +27 -25
  23. package/lib/module/components/card-loading/index.js.map +1 -1
  24. package/lib/module/components/header-profile/index.js +68 -62
  25. package/lib/module/components/header-profile/index.js.map +1 -1
  26. package/lib/module/components/history-details/index.js +4 -4
  27. package/lib/module/components/notification-card/index.js +12 -7
  28. package/lib/module/components/notification-card/index.js.map +1 -1
  29. package/lib/module/components/user-profile/index.js +9 -10
  30. package/lib/module/components/user-profile/index.js.map +1 -1
  31. package/lib/module/index.js +3 -3
  32. package/lib/module/index.js.map +1 -1
  33. package/lib/module/stories/header-profile/header-profile.stories.js +5 -16
  34. package/lib/module/stories/header-profile/header-profile.stories.js.map +1 -1
  35. package/lib/module/stories/notification-card/notification-card.stories.js +194 -0
  36. package/lib/module/stories/notification-card/notification-card.stories.js.map +1 -0
  37. package/lib/module/stories/notification-loading/notification-loading.stories.js.map +1 -1
  38. package/lib/module/styles/theme/theme.js +5 -5
  39. package/lib/module/utils/status-color/return-color.js +2 -2
  40. package/lib/module/utils/status-color/return-color.js.map +1 -1
  41. package/lib/typescript/src/components/card-loading/index.d.ts.map +1 -1
  42. package/lib/typescript/src/components/header-profile/index.d.ts +66 -5
  43. package/lib/typescript/src/components/header-profile/index.d.ts.map +1 -1
  44. package/lib/typescript/src/components/notification-card/index.d.ts.map +1 -1
  45. package/lib/typescript/src/components/notification-card/interface.d.ts +2 -1
  46. package/lib/typescript/src/components/notification-card/interface.d.ts.map +1 -1
  47. package/lib/typescript/src/components/user-profile/index.d.ts.map +1 -1
  48. package/lib/typescript/src/index.d.ts +1 -1
  49. package/lib/typescript/src/index.d.ts.map +1 -1
  50. package/lib/typescript/src/stories/header-profile/header-profile.stories.d.ts +1 -1
  51. package/lib/typescript/src/stories/header-profile/header-profile.stories.d.ts.map +1 -1
  52. package/lib/typescript/src/stories/notification-card/notification-card.stories.d.ts +14 -0
  53. package/lib/typescript/src/stories/notification-card/notification-card.stories.d.ts.map +1 -0
  54. package/package.json +1 -1
  55. package/src/components/box/index.tsx +49 -49
  56. package/src/components/card-loading/index.tsx +294 -290
  57. package/src/components/header-profile/index.tsx +148 -132
  58. package/src/components/header-profile/interface.d.ts +145 -57
  59. package/src/components/history-details/index.tsx +99 -99
  60. package/src/components/notification-card/index.tsx +127 -123
  61. package/src/components/notification-card/interface.ts +19 -18
  62. package/src/components/user-profile/index.tsx +206 -204
  63. package/src/index.ts +48 -48
  64. package/src/stories/header-profile/header-profile.stories.tsx +92 -103
  65. package/src/stories/notification-card/notification-card.stories.tsx +202 -0
  66. package/src/stories/notification-loading/notification-loading.stories.tsx +88 -88
  67. package/src/styles/theme/theme.ts +193 -193
  68. package/src/utils/status-color/return-color.ts +34 -34
@@ -1,290 +1,294 @@
1
- /**
2
- * IMPORTS
3
- */
4
- import React from "react";
5
- import { Image, TouchableOpacity } from "react-native";
6
-
7
- // components
8
- import { Box } from "../box";
9
- import { Typography } from "../typography";
10
-
11
- // comons / icons
12
- import { Icons } from "../../common/icons-svg";
13
-
14
- // typings
15
- import { ICardLoading } from "./interface";
16
-
17
- // styles
18
- import { theme } from "../../styles/theme/theme";
19
- import {
20
- getStatusTextColor,
21
- getStatusColor,
22
- StatusType,
23
- } from "../../utils/status-color/return-color";
24
-
25
- /**
26
- *
27
- * Componente CardLoading para a interação do usuário com ui.
28
- */
29
- const CardLoading: React.FC<ICardLoading> = ({
30
- width,
31
- title = "Carregamento #01020304050607",
32
- local = "Doca 1, Patío 03 - Usiminas Ipatinga",
33
- vehicle = "EXP-0000",
34
- prevision = "12:34 10/03/2025",
35
- kg = 20,
36
- qtdCoils = 10,
37
- status = "Pendente",
38
- handleNavigation,
39
- testID,
40
- }: ICardLoading) => {
41
- return (
42
- <TouchableOpacity onPress={handleNavigation} activeOpacity={0.7}>
43
- <Box
44
- testID={testID}
45
- width={width ?? "100%"}
46
- backgroundColor={theme.colors.blue[400]}
47
- marginStyle={{ marginBottom: theme.margins.md }}
48
- paddingStyle={{ padding: theme.paddings["2xs"] }}
49
- borderStyled={{
50
- borderWidth: theme.borderWidths.thin,
51
- borderColor: theme.colors.blue[400],
52
- borderRadius: theme.borderWidths.thick_medium,
53
- }}
54
- flexStyle={{ flexDirection: "row", justifyContent: "flex-start", alignItems: "center" }}
55
- >
56
- <Box width={"26%"} borderStyled={{ borderRadius: theme.borderWidths.thick_medium }}>
57
- <Image
58
- source={{
59
- uri: "https://th.bing.com/th/id/OIP.Rr9_IUNo8J66QbvQkxzXtwHaEJ?w=276&h=180&c=7&r=0&o=5&pid=1.7",
60
- }}
61
- style={{
62
- width: "100%",
63
- flex: 1,
64
- borderRadius: theme.borderWidths.thick_medium,
65
- }}
66
- />
67
- </Box>
68
-
69
- <Box width={"74%"} paddingStyle={{ paddingLeft: theme.paddings["2xs"] }}>
70
- <Typography
71
- text={title}
72
- ellipsizeMode="tail"
73
- numberOfLines={1}
74
- color={theme.colors.neutral[25]}
75
- size={theme.fontSizes.sm}
76
- fontFamily={theme.fonts.inter_bold_700}
77
- lineHeight={theme.fontSizes.xl ?? 20}
78
- letterSpacing={"regular"}
79
- marginBottom={4}
80
- />
81
-
82
- <Typography
83
- text={local}
84
- color={theme.colors.neutral[25]}
85
- size={theme.fontSizes.xs}
86
- fontFamily={theme.fonts.inter_regular_400}
87
- lineHeight={theme.fontSizes.md ?? 16}
88
- letterSpacing={"regular"}
89
- marginBottom={4}
90
- />
91
-
92
- <Box
93
- flexStyle={{
94
- flexDirection: "row",
95
- justifyContent: "flex-start",
96
- alignItems: "center",
97
- }}
98
- marginStyle={{
99
- marginBottom: 4,
100
- }}
101
- >
102
- <Box
103
- flexStyle={{
104
- flexDirection: "row",
105
- alignItems: "center",
106
- justifyContent: "space-between",
107
- }}
108
- marginStyle={{
109
- marginRight: 8,
110
- }}
111
- >
112
- <Icons icon={"TIMER"} size={theme.fontSizes["sm"]} color={theme.colors.neutral[25]} />
113
- <Typography
114
- text={"AUT"}
115
- color={theme.colors.neutral[25]}
116
- size={theme.fontSizes.xs}
117
- fontFamily={theme.fonts.inter_bold_700}
118
- lineHeight={theme.fontSizes.md ?? 16}
119
- letterSpacing={"regular"}
120
- marginLeft={2}
121
- />
122
- </Box>
123
-
124
- <Box
125
- flexStyle={{
126
- flexDirection: "row",
127
- alignItems: "center",
128
- justifyContent: "space-between",
129
- }}
130
- marginStyle={{
131
- marginRight: 8,
132
- }}
133
- >
134
- <Icons icon={"TIMER"} size={theme.fontSizes["sm"]} color={theme.colors.neutral[25]} />
135
- <Typography
136
- text={`${kg}KG`}
137
- color={theme.colors.neutral[25]}
138
- size={theme.fontSizes.xs}
139
- fontFamily={theme.fonts.inter_bold_700}
140
- lineHeight={theme.fontSizes.md ?? 16}
141
- letterSpacing={"regular"}
142
- marginLeft={2}
143
- />
144
- </Box>
145
-
146
- <Box
147
- flexStyle={{
148
- flexDirection: "row",
149
- alignItems: "center",
150
- justifyContent: "space-between",
151
- }}
152
- >
153
- <Icons icon={"TIMER"} size={theme.fontSizes["sm"]} color={theme.colors.neutral[25]} />
154
- <Typography
155
- text={`${qtdCoils}QTD`}
156
- color={theme.colors.neutral[25]}
157
- size={theme.fontSizes.xs}
158
- fontFamily={theme.fonts.inter_bold_700}
159
- lineHeight={theme.fontSizes.md ?? 16}
160
- letterSpacing={"regular"}
161
- marginLeft={2}
162
- />
163
- </Box>
164
- </Box>
165
-
166
- {/**DADOS DO VEÍCULOS */}
167
- <Box
168
- flexStyle={{
169
- flexDirection: "row",
170
- justifyContent: "flex-start",
171
- alignItems: "center",
172
- }}
173
- marginStyle={{
174
- marginBottom: 4,
175
- }}
176
- >
177
- <Typography
178
- text={"Dados Veículo:"}
179
- color={theme.colors.neutral[25]}
180
- size={theme.fontSizes.xs}
181
- fontFamily={theme.fonts.inter_regular_400}
182
- lineHeight={theme.fontSizes.md ?? 16}
183
- letterSpacing={"regular"}
184
- />
185
- <Typography
186
- text={vehicle}
187
- color={theme.colors.neutral[25]}
188
- size={theme.fontSizes.xs}
189
- fontFamily={theme.fonts.inter_bold_700}
190
- lineHeight={theme.fontSizes.md ?? 16}
191
- letterSpacing={"regular"}
192
- marginLeft={4}
193
- />
194
- </Box>
195
-
196
- {/**PREVISÃO DO CARREGAMENTO */}
197
- <Box
198
- width={"100%"}
199
- flexStyle={{
200
- flexDirection: "row",
201
- alignItems: "center",
202
- justifyContent: "space-between",
203
- }}
204
- marginStyle={{
205
- marginBottom: 8,
206
- }}
207
- >
208
- <Box
209
- flexStyle={{
210
- flexDirection: "row",
211
- justifyContent: "flex-start",
212
- alignItems: "center",
213
- }}
214
- >
215
- <Typography
216
- text={"Previsão:"}
217
- color={theme.colors.neutral[25]}
218
- size={theme.fontSizes.xs}
219
- fontFamily={theme.fonts.inter_regular_400}
220
- lineHeight={theme.fontSizes.md ?? 16}
221
- letterSpacing={"regular"}
222
- />
223
- <Typography
224
- text={prevision}
225
- color={theme.colors.neutral[25]}
226
- size={theme.fontSizes.xs}
227
- fontFamily={theme.fonts.inter_bold_700}
228
- lineHeight={theme.fontSizes.md ?? 16}
229
- letterSpacing={"regular"}
230
- marginLeft={4}
231
- />
232
- </Box>
233
- </Box>
234
-
235
- {/**STATUS DO CARREGAMENTO */}
236
- <Box
237
- width={"100%"}
238
- flexStyle={{
239
- flexDirection: "row",
240
- alignItems: "center",
241
- justifyContent: "space-between",
242
- }}
243
- marginStyle={{
244
- marginBottom: 4,
245
- }}
246
- >
247
- <Box
248
- flexStyle={{
249
- flexDirection: "row",
250
- justifyContent: "flex-start",
251
- alignItems: "center",
252
- }}
253
- backgroundColor={getStatusColor(status as StatusType)}
254
- height={22}
255
- borderStyled={{
256
- borderWidth: 1,
257
- borderRadius: 11,
258
- borderColor: "transparent",
259
- }}
260
- paddingStyle={{ paddingLeft: 8, paddingRight: 8 }}
261
- >
262
- <Typography
263
- text={"Status:"}
264
- color={theme.colors.neutral[25]}
265
- size={theme.fontSizes.xs}
266
- fontFamily={theme.fonts.inter_regular_400}
267
- lineHeight={theme.fontSizes.md ?? 16}
268
- letterSpacing={"regular"}
269
- />
270
- <Typography
271
- text={status}
272
- color={getStatusTextColor(status as StatusType)}
273
- size={theme.fontSizes.xs}
274
- fontFamily={theme.fonts.inter_bold_700}
275
- lineHeight={theme.fontSizes.md ?? 16}
276
- letterSpacing={"regular"}
277
- marginLeft={4}
278
- />
279
- </Box>
280
- </Box>
281
- </Box>
282
- </Box>
283
- </TouchableOpacity>
284
- );
285
- };
286
-
287
- /**
288
- * EXPORTS
289
- */
290
- export { CardLoading };
1
+ /**
2
+ * IMPORTS
3
+ */
4
+ import React from "react";
5
+ import { Image, TouchableOpacity } from "react-native";
6
+
7
+ // components
8
+ import { Box } from "../box";
9
+ import { Typography } from "../typography";
10
+
11
+ // comons / icons
12
+ import { Icons } from "../../common/icons-svg";
13
+
14
+ // typings
15
+ import { ICardLoading } from "./interface";
16
+
17
+ // styles
18
+ import { theme } from "../../styles/theme/theme";
19
+ import {
20
+ getStatusTextColor,
21
+ getStatusColor,
22
+ StatusType,
23
+ } from "../../utils/status-color/return-color";
24
+
25
+ /**
26
+ *
27
+ * Componente CardLoading para a interação do usuário com ui.
28
+ */
29
+ const CardLoading: React.FC<ICardLoading> = ({
30
+ width,
31
+ title = "Carregamento #01020304050607",
32
+ local = "Doca 1, Patío 03 - Usiminas Ipatinga",
33
+ vehicle = "EXP-0000",
34
+ prevision = "12:34 10/03/2025",
35
+ kg = 20,
36
+ qtdCoils = 10,
37
+ status = "Pendente",
38
+ handleNavigation,
39
+ testID,
40
+ }: ICardLoading) => {
41
+ return (
42
+ <TouchableOpacity onPress={handleNavigation} activeOpacity={0.7}>
43
+ <Box
44
+ testID={testID}
45
+ width={width ?? "100%"}
46
+ backgroundColor={theme.colors.blue[400]}
47
+ marginStyle={{ marginBottom: theme.margins.md }}
48
+ paddingStyle={{ padding: theme.paddings["2xs"] }}
49
+ borderStyled={{
50
+ borderWidth: theme.borderWidths.thin,
51
+ borderColor: theme.colors.blue[400],
52
+ borderRadius: theme.borderWidths.thick_medium,
53
+ }}
54
+ flexStyle={{ flexDirection: "row", justifyContent: "flex-start", alignItems: "center" }}
55
+ >
56
+ <Box width={"26%"} borderStyled={{ borderRadius: theme.borderWidths.thick_medium }}>
57
+ <Image
58
+ source={{
59
+ uri: "https://th.bing.com/th/id/OIP.Rr9_IUNo8J66QbvQkxzXtwHaEJ?w=276&h=180&c=7&r=0&o=5&pid=1.7",
60
+ }}
61
+ style={{
62
+ width: "100%",
63
+ flex: 1,
64
+ borderRadius: theme.borderWidths.thick_medium,
65
+ }}
66
+ />
67
+ </Box>
68
+
69
+ <Box width={"74%"} paddingStyle={{ paddingLeft: theme.paddings["2xs"] }}>
70
+ <Typography
71
+ text={title}
72
+ ellipsizeMode="tail"
73
+ numberOfLines={1}
74
+ color={theme.colors.neutral[25]}
75
+ size={theme.fontSizes.sm}
76
+ fontFamily={theme.fonts.inter_bold_700}
77
+ lineHeight={theme.fontSizes.xl ?? 20}
78
+ letterSpacing={"regular"}
79
+ marginBottom={4}
80
+ />
81
+
82
+ <Typography
83
+ text={local}
84
+ color={theme.colors.neutral[25]}
85
+ size={theme.fontSizes.xs}
86
+ fontFamily={theme.fonts.inter_regular_400}
87
+ lineHeight={theme.fontSizes.md ?? 16}
88
+ letterSpacing={"regular"}
89
+ marginBottom={4}
90
+ />
91
+
92
+ <Box
93
+ flexStyle={{
94
+ flexDirection: "row",
95
+ justifyContent: "flex-start",
96
+ alignItems: "center",
97
+ }}
98
+ marginStyle={{
99
+ marginBottom: 4,
100
+ }}
101
+ >
102
+ <Box
103
+ flexStyle={{
104
+ flexDirection: "row",
105
+ alignItems: "center",
106
+ justifyContent: "space-between",
107
+ }}
108
+ marginStyle={{
109
+ marginRight: 8,
110
+ }}
111
+ >
112
+ <Icons icon={"TIMER"} size={theme.fontSizes["sm"]} color={theme.colors.neutral[25]} />
113
+ <Typography
114
+ text={"AUT"}
115
+ color={theme.colors.neutral[25]}
116
+ size={theme.fontSizes.xs}
117
+ fontFamily={theme.fonts.inter_bold_700}
118
+ lineHeight={theme.fontSizes.md ?? 16}
119
+ letterSpacing={"regular"}
120
+ marginLeft={2}
121
+ />
122
+ </Box>
123
+
124
+ <Box
125
+ flexStyle={{
126
+ flexDirection: "row",
127
+ alignItems: "center",
128
+ justifyContent: "space-between",
129
+ }}
130
+ marginStyle={{
131
+ marginRight: 8,
132
+ }}
133
+ >
134
+ <Icons icon={"TIMER"} size={theme.fontSizes["sm"]} color={theme.colors.neutral[25]} />
135
+ <Typography
136
+ text={`${kg}KG`}
137
+ color={theme.colors.neutral[25]}
138
+ size={theme.fontSizes.xs}
139
+ fontFamily={theme.fonts.inter_bold_700}
140
+ lineHeight={theme.fontSizes.md ?? 16}
141
+ letterSpacing={"regular"}
142
+ marginLeft={2}
143
+ />
144
+ </Box>
145
+
146
+ <Box
147
+ flexStyle={{
148
+ flexDirection: "row",
149
+ alignItems: "center",
150
+ justifyContent: "space-between",
151
+ }}
152
+ >
153
+ <Icons icon={"TIMER"} size={theme.fontSizes["sm"]} color={theme.colors.neutral[25]} />
154
+ <Typography
155
+ text={`${qtdCoils}QTD`}
156
+ color={theme.colors.neutral[25]}
157
+ size={theme.fontSizes.xs}
158
+ fontFamily={theme.fonts.inter_bold_700}
159
+ lineHeight={theme.fontSizes.md ?? 16}
160
+ letterSpacing={"regular"}
161
+ marginLeft={2}
162
+ />
163
+ </Box>
164
+ </Box>
165
+
166
+ {/**DADOS DO VEÍCULOS */}
167
+ <Box
168
+ flexStyle={{
169
+ flexDirection: "row",
170
+ justifyContent: "flex-start",
171
+ alignItems: "center",
172
+ }}
173
+ marginStyle={{
174
+ marginBottom: 4,
175
+ }}
176
+ >
177
+ {vehicle && (
178
+ <>
179
+ <Typography
180
+ text={"Dados Veículo:"}
181
+ color={theme.colors.neutral[25]}
182
+ size={theme.fontSizes.xs}
183
+ fontFamily={theme.fonts.inter_regular_400}
184
+ lineHeight={theme.fontSizes.md ?? 16}
185
+ letterSpacing={"regular"}
186
+ />
187
+ <Typography
188
+ text={vehicle}
189
+ color={theme.colors.neutral[25]}
190
+ size={theme.fontSizes.xs}
191
+ fontFamily={theme.fonts.inter_bold_700}
192
+ lineHeight={theme.fontSizes.md ?? 16}
193
+ letterSpacing={"regular"}
194
+ marginLeft={4}
195
+ />
196
+ </>
197
+ )}
198
+ </Box>
199
+
200
+ {/**PREVISÃO DO CARREGAMENTO */}
201
+ <Box
202
+ width={"100%"}
203
+ flexStyle={{
204
+ flexDirection: "row",
205
+ alignItems: "center",
206
+ justifyContent: "space-between",
207
+ }}
208
+ marginStyle={{
209
+ marginBottom: 8,
210
+ }}
211
+ >
212
+ <Box
213
+ flexStyle={{
214
+ flexDirection: "row",
215
+ justifyContent: "flex-start",
216
+ alignItems: "center",
217
+ }}
218
+ >
219
+ <Typography
220
+ text={"Previsão:"}
221
+ color={theme.colors.neutral[25]}
222
+ size={theme.fontSizes.xs}
223
+ fontFamily={theme.fonts.inter_regular_400}
224
+ lineHeight={theme.fontSizes.md ?? 16}
225
+ letterSpacing={"regular"}
226
+ />
227
+ <Typography
228
+ text={prevision}
229
+ color={theme.colors.neutral[25]}
230
+ size={theme.fontSizes.xs}
231
+ fontFamily={theme.fonts.inter_bold_700}
232
+ lineHeight={theme.fontSizes.md ?? 16}
233
+ letterSpacing={"regular"}
234
+ marginLeft={4}
235
+ />
236
+ </Box>
237
+ </Box>
238
+
239
+ {/**STATUS DO CARREGAMENTO */}
240
+ <Box
241
+ width={"100%"}
242
+ flexStyle={{
243
+ flexDirection: "row",
244
+ alignItems: "center",
245
+ justifyContent: "space-between",
246
+ }}
247
+ marginStyle={{
248
+ marginBottom: 4,
249
+ }}
250
+ >
251
+ <Box
252
+ flexStyle={{
253
+ flexDirection: "row",
254
+ justifyContent: "flex-start",
255
+ alignItems: "center",
256
+ }}
257
+ backgroundColor={getStatusColor(status as StatusType)}
258
+ height={22}
259
+ borderStyled={{
260
+ borderWidth: 1,
261
+ borderRadius: 11,
262
+ borderColor: "transparent",
263
+ }}
264
+ paddingStyle={{ paddingLeft: 8, paddingRight: 8 }}
265
+ >
266
+ <Typography
267
+ text={"Status:"}
268
+ color={theme.colors.neutral[25]}
269
+ size={theme.fontSizes.xs}
270
+ fontFamily={theme.fonts.inter_regular_400}
271
+ lineHeight={theme.fontSizes.md ?? 16}
272
+ letterSpacing={"regular"}
273
+ />
274
+ <Typography
275
+ text={status}
276
+ color={getStatusTextColor(status as StatusType)}
277
+ size={theme.fontSizes.xs}
278
+ fontFamily={theme.fonts.inter_bold_700}
279
+ lineHeight={theme.fontSizes.md ?? 16}
280
+ letterSpacing={"regular"}
281
+ marginLeft={4}
282
+ />
283
+ </Box>
284
+ </Box>
285
+ </Box>
286
+ </Box>
287
+ </TouchableOpacity>
288
+ );
289
+ };
290
+
291
+ /**
292
+ * EXPORTS
293
+ */
294
+ export { CardLoading };