@mirohq/design-system-icons 0.1.3 → 0.2.1

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 (94) hide show
  1. package/dist/main.js +499 -204
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +482 -201
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +35 -6
  6. package/package.json +1 -1
  7. package/react/{search.tsx → arrow-box-out.tsx} +9 -5
  8. package/react/{icon-placeholder.tsx → arrow-down-left.tsx} +9 -5
  9. package/react/arrow-down-right.tsx +26 -0
  10. package/react/arrow-down.tsx +26 -0
  11. package/react/arrow-left.tsx +8 -3
  12. package/react/arrow-right.tsx +7 -2
  13. package/react/arrow-up-left.tsx +26 -0
  14. package/react/arrow-up-right.tsx +26 -0
  15. package/react/{arrow-top-right.tsx → arrow-up.tsx} +9 -4
  16. package/react/bar-three.tsx +7 -2
  17. package/react/check-mark.tsx +7 -2
  18. package/react/chevron-down.tsx +7 -2
  19. package/react/chevron-left.tsx +7 -2
  20. package/react/chevron-right.tsx +7 -2
  21. package/react/chevron-up.tsx +7 -2
  22. package/react/cog.tsx +28 -0
  23. package/react/cross-circle.tsx +8 -4
  24. package/react/cross.tsx +7 -2
  25. package/react/envelope.tsx +8 -12
  26. package/react/exclamation-point-circle.tsx +9 -4
  27. package/react/globe.tsx +8 -4
  28. package/react/house.tsx +24 -0
  29. package/react/index.ts +18 -4
  30. package/react/information-mark-circle.tsx +9 -4
  31. package/react/link.tsx +26 -0
  32. package/react/lock-closed.tsx +9 -14
  33. package/react/lock-open.tsx +9 -14
  34. package/react/magnifying-glass.tsx +26 -0
  35. package/react/minus.tsx +7 -2
  36. package/react/placeholder.tsx +26 -0
  37. package/react/plug.tsx +26 -0
  38. package/react/plus.tsx +7 -2
  39. package/react/{question-mark.tsx → question-mark-circle.tsx} +9 -5
  40. package/react/social-facebook.tsx +7 -2
  41. package/react/social-instagram.tsx +7 -2
  42. package/react/social-linkedin.tsx +7 -2
  43. package/react/social-twitter.tsx +7 -2
  44. package/react/social-youtube.tsx +7 -2
  45. package/react/user-add.tsx +26 -0
  46. package/react/user.tsx +26 -0
  47. package/react/users.tsx +26 -0
  48. package/react/wallet.tsx +27 -0
  49. package/svg/24/arrow-box-out.svg +1 -0
  50. package/svg/24/arrow-down-left.svg +1 -0
  51. package/svg/24/arrow-down-right.svg +1 -0
  52. package/svg/24/arrow-down.svg +1 -0
  53. package/svg/24/arrow-left.svg +1 -1
  54. package/svg/24/arrow-right.svg +1 -1
  55. package/svg/24/arrow-up-left.svg +1 -0
  56. package/svg/24/arrow-up-right.svg +1 -0
  57. package/svg/24/arrow-up.svg +1 -0
  58. package/svg/24/bar-three.svg +1 -1
  59. package/svg/24/check-mark.svg +1 -1
  60. package/svg/24/chevron-down.svg +1 -1
  61. package/svg/24/chevron-left.svg +1 -1
  62. package/svg/24/chevron-right.svg +1 -1
  63. package/svg/24/chevron-up.svg +1 -1
  64. package/svg/24/cog.svg +1 -0
  65. package/svg/24/cross-circle.svg +1 -1
  66. package/svg/24/cross.svg +1 -1
  67. package/svg/24/envelope.svg +1 -1
  68. package/svg/24/exclamation-point-circle.svg +1 -1
  69. package/svg/24/globe.svg +1 -1
  70. package/svg/24/house.svg +1 -0
  71. package/svg/24/information-mark-circle.svg +1 -1
  72. package/svg/24/link.svg +1 -0
  73. package/svg/24/lock-closed.svg +1 -1
  74. package/svg/24/lock-open.svg +1 -1
  75. package/svg/24/magnifying-glass.svg +1 -0
  76. package/svg/24/minus.svg +1 -1
  77. package/svg/24/placeholder.svg +1 -0
  78. package/svg/24/plug.svg +1 -0
  79. package/svg/24/plus.svg +1 -1
  80. package/svg/24/question-mark-circle.svg +1 -0
  81. package/svg/24/social-facebook.svg +1 -1
  82. package/svg/24/social-instagram.svg +1 -1
  83. package/svg/24/social-linkedin.svg +1 -1
  84. package/svg/24/social-twitter.svg +1 -1
  85. package/svg/24/social-youtube.svg +1 -1
  86. package/svg/24/user-add.svg +1 -0
  87. package/svg/24/user.svg +1 -0
  88. package/svg/24/users.svg +1 -0
  89. package/svg/24/wallet.svg +1 -0
  90. package/svg/meta.json +117 -10
  91. package/svg/24/arrow-top-right.svg +0 -1
  92. package/svg/24/icon-placeholder.svg +0 -1
  93. package/svg/24/question-mark.svg +0 -1
  94. package/svg/24/search.svg +0 -1
package/dist/module.js CHANGED
@@ -23,29 +23,111 @@ const StyledIcon = styled(Primitive.svg, {
23
23
  }
24
24
  });
25
25
 
26
- const IconArrowLeft = forwardRef(
26
+ const IconArrowBoxOut = forwardRef(
27
27
  ({ size = "medium", ...props }, forwardRef2) => createElement(
28
28
  StyledIcon,
29
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
29
+ {
30
+ ...props,
31
+ size,
32
+ viewBox: "0 0 24 24",
33
+ fill: "none",
34
+ ref: forwardRef2
35
+ },
30
36
  /* @__PURE__ */ React.createElement("path", {
31
- d: "M0 0h23.59v24H0z"
32
- }),
37
+ stroke: "currentColor",
38
+ strokeLinecap: "round",
39
+ strokeWidth: 2,
40
+ d: "M17 14v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h4.5M20 4l-9 9m2.002-9h7v7"
41
+ })
42
+ )
43
+ );
44
+
45
+ const IconArrowDownLeft = forwardRef(
46
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
47
+ StyledIcon,
48
+ {
49
+ ...props,
50
+ size,
51
+ viewBox: "0 0 24 24",
52
+ fill: "none",
53
+ ref: forwardRef2
54
+ },
33
55
  /* @__PURE__ */ React.createElement("path", {
34
56
  stroke: "currentColor",
35
57
  strokeLinecap: "round",
36
58
  strokeWidth: 2,
37
- d: "M20.59 12h-17M10 5l-7 7 7 7"
59
+ d: "M5 19h9m-9 0v-9m0 9L19 5"
38
60
  })
39
61
  )
40
62
  );
41
63
 
42
- const IconArrowRight = forwardRef(
64
+ const IconArrowDownRight = forwardRef(
43
65
  ({ size = "medium", ...props }, forwardRef2) => createElement(
44
66
  StyledIcon,
45
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
67
+ {
68
+ ...props,
69
+ size,
70
+ viewBox: "0 0 24 24",
71
+ fill: "none",
72
+ ref: forwardRef2
73
+ },
46
74
  /* @__PURE__ */ React.createElement("path", {
47
- d: "M0 0h24v24H0z"
48
- }),
75
+ stroke: "currentColor",
76
+ strokeLinecap: "round",
77
+ strokeWidth: 2,
78
+ d: "M19 19v-9m0 9h-9m9 0L5 5"
79
+ })
80
+ )
81
+ );
82
+
83
+ const IconArrowDown = forwardRef(
84
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
85
+ StyledIcon,
86
+ {
87
+ ...props,
88
+ size,
89
+ viewBox: "0 0 24 24",
90
+ fill: "none",
91
+ ref: forwardRef2
92
+ },
93
+ /* @__PURE__ */ React.createElement("path", {
94
+ stroke: "currentColor",
95
+ strokeLinecap: "round",
96
+ strokeWidth: 2,
97
+ d: "M12 20V3m7 10.59-7 7-7-7"
98
+ })
99
+ )
100
+ );
101
+
102
+ const IconArrowLeft = forwardRef(
103
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
104
+ StyledIcon,
105
+ {
106
+ ...props,
107
+ size,
108
+ viewBox: "0 0 24 24",
109
+ fill: "none",
110
+ ref: forwardRef2
111
+ },
112
+ /* @__PURE__ */ React.createElement("path", {
113
+ stroke: "currentColor",
114
+ strokeLinecap: "round",
115
+ strokeWidth: 2,
116
+ d: "M21 12H4m6.41-7-7 7 7 7"
117
+ })
118
+ )
119
+ );
120
+
121
+ const IconArrowRight = forwardRef(
122
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
123
+ StyledIcon,
124
+ {
125
+ ...props,
126
+ size,
127
+ viewBox: "0 0 24 24",
128
+ fill: "none",
129
+ ref: forwardRef2
130
+ },
49
131
  /* @__PURE__ */ React.createElement("path", {
50
132
  stroke: "currentColor",
51
133
  strokeLinecap: "round",
@@ -55,29 +137,73 @@ const IconArrowRight = forwardRef(
55
137
  )
56
138
  );
57
139
 
58
- const IconArrowTopRight = forwardRef(
140
+ const IconArrowUpLeft = forwardRef(
59
141
  ({ size = "medium", ...props }, forwardRef2) => createElement(
60
142
  StyledIcon,
61
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
143
+ {
144
+ ...props,
145
+ size,
146
+ viewBox: "0 0 24 24",
147
+ fill: "none",
148
+ ref: forwardRef2
149
+ },
62
150
  /* @__PURE__ */ React.createElement("path", {
63
- d: "M0 0h24v24H0z"
64
- }),
151
+ stroke: "currentColor",
152
+ strokeLinecap: "round",
153
+ strokeWidth: 2,
154
+ d: "M5 5v9m0-9h9M5 5l14 14"
155
+ })
156
+ )
157
+ );
158
+
159
+ const IconArrowUpRight = forwardRef(
160
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
161
+ StyledIcon,
162
+ {
163
+ ...props,
164
+ size,
165
+ viewBox: "0 0 24 24",
166
+ fill: "none",
167
+ ref: forwardRef2
168
+ },
65
169
  /* @__PURE__ */ React.createElement("path", {
66
170
  stroke: "currentColor",
67
171
  strokeLinecap: "round",
68
172
  strokeWidth: 2,
69
- d: "M10 5h9v9m0-9L5 19"
173
+ d: "M19 5h-9m9 0v9m0-9L5 19"
70
174
  })
71
175
  )
72
176
  );
73
177
 
74
- const IconBarThree = forwardRef(
178
+ const IconArrowUp = forwardRef(
75
179
  ({ size = "medium", ...props }, forwardRef2) => createElement(
76
180
  StyledIcon,
77
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
181
+ {
182
+ ...props,
183
+ size,
184
+ viewBox: "0 0 24 24",
185
+ fill: "none",
186
+ ref: forwardRef2
187
+ },
78
188
  /* @__PURE__ */ React.createElement("path", {
79
- d: "M0 0h24v24H0z"
80
- }),
189
+ stroke: "currentColor",
190
+ strokeLinecap: "round",
191
+ strokeWidth: 2,
192
+ d: "M12 4v17M5 10.41l7-7 7 7"
193
+ })
194
+ )
195
+ );
196
+
197
+ const IconBarThree = forwardRef(
198
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
199
+ StyledIcon,
200
+ {
201
+ ...props,
202
+ size,
203
+ viewBox: "0 0 24 24",
204
+ fill: "none",
205
+ ref: forwardRef2
206
+ },
81
207
  /* @__PURE__ */ React.createElement("path", {
82
208
  stroke: "currentColor",
83
209
  strokeLinecap: "round",
@@ -90,10 +216,13 @@ const IconBarThree = forwardRef(
90
216
  const IconCheckMark = forwardRef(
91
217
  ({ size = "medium", ...props }, forwardRef2) => createElement(
92
218
  StyledIcon,
93
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
94
- /* @__PURE__ */ React.createElement("path", {
95
- d: "M0 0h24v24H0z"
96
- }),
219
+ {
220
+ ...props,
221
+ size,
222
+ viewBox: "0 0 24 24",
223
+ fill: "none",
224
+ ref: forwardRef2
225
+ },
97
226
  /* @__PURE__ */ React.createElement("path", {
98
227
  stroke: "currentColor",
99
228
  strokeLinecap: "round",
@@ -106,10 +235,13 @@ const IconCheckMark = forwardRef(
106
235
  const IconChevronDown = forwardRef(
107
236
  ({ size = "medium", ...props }, forwardRef2) => createElement(
108
237
  StyledIcon,
109
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
110
- /* @__PURE__ */ React.createElement("path", {
111
- d: "M0 0h24v24H0z"
112
- }),
238
+ {
239
+ ...props,
240
+ size,
241
+ viewBox: "0 0 24 24",
242
+ fill: "none",
243
+ ref: forwardRef2
244
+ },
113
245
  /* @__PURE__ */ React.createElement("path", {
114
246
  stroke: "currentColor",
115
247
  strokeLinecap: "round",
@@ -122,10 +254,13 @@ const IconChevronDown = forwardRef(
122
254
  const IconChevronLeft = forwardRef(
123
255
  ({ size = "medium", ...props }, forwardRef2) => createElement(
124
256
  StyledIcon,
125
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
126
- /* @__PURE__ */ React.createElement("path", {
127
- d: "M0 0h24v24H0z"
128
- }),
257
+ {
258
+ ...props,
259
+ size,
260
+ viewBox: "0 0 24 24",
261
+ fill: "none",
262
+ ref: forwardRef2
263
+ },
129
264
  /* @__PURE__ */ React.createElement("path", {
130
265
  stroke: "currentColor",
131
266
  strokeLinecap: "round",
@@ -138,10 +273,13 @@ const IconChevronLeft = forwardRef(
138
273
  const IconChevronRight = forwardRef(
139
274
  ({ size = "medium", ...props }, forwardRef2) => createElement(
140
275
  StyledIcon,
141
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
142
- /* @__PURE__ */ React.createElement("path", {
143
- d: "M0 0h24v24H0z"
144
- }),
276
+ {
277
+ ...props,
278
+ size,
279
+ viewBox: "0 0 24 24",
280
+ fill: "none",
281
+ ref: forwardRef2
282
+ },
145
283
  /* @__PURE__ */ React.createElement("path", {
146
284
  stroke: "currentColor",
147
285
  strokeLinecap: "round",
@@ -154,10 +292,13 @@ const IconChevronRight = forwardRef(
154
292
  const IconChevronUp = forwardRef(
155
293
  ({ size = "medium", ...props }, forwardRef2) => createElement(
156
294
  StyledIcon,
157
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
158
- /* @__PURE__ */ React.createElement("path", {
159
- d: "M0 0h24v24H0z"
160
- }),
295
+ {
296
+ ...props,
297
+ size,
298
+ viewBox: "0 0 24 24",
299
+ fill: "none",
300
+ ref: forwardRef2
301
+ },
161
302
  /* @__PURE__ */ React.createElement("path", {
162
303
  stroke: "currentColor",
163
304
  strokeLinecap: "round",
@@ -167,66 +308,86 @@ const IconChevronUp = forwardRef(
167
308
  )
168
309
  );
169
310
 
170
- const IconCrossCircle = forwardRef(
311
+ const IconCog = forwardRef(
171
312
  ({ size = "medium", ...props }, forwardRef2) => createElement(
172
313
  StyledIcon,
173
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
174
- /* @__PURE__ */ React.createElement("path", {
175
- d: "M0 0h24v24H0z"
176
- }),
314
+ {
315
+ ...props,
316
+ size,
317
+ viewBox: "0 0 24 24",
318
+ fill: "none",
319
+ ref: forwardRef2
320
+ },
177
321
  /* @__PURE__ */ React.createElement("circle", {
178
322
  cx: 12,
179
323
  cy: 12,
180
- r: 9,
324
+ r: 1,
181
325
  stroke: "currentColor",
182
326
  strokeWidth: 2
183
327
  }),
184
328
  /* @__PURE__ */ React.createElement("path", {
185
329
  stroke: "currentColor",
186
330
  strokeLinecap: "round",
331
+ strokeLinejoin: "round",
187
332
  strokeWidth: 2,
188
- d: "m9 9 6 6m0-6-6 6"
333
+ d: "M13.544 3h-3l-1 3-1.446.835L5 6.2 3.5 8.799l2.098 2.366v1.67L3.5 15.2 5 17.799l3.098-.634L9.544 18l1 3h3l1-3 1.446-.835 3.098.634 1.5-2.598-2.098-2.366v-1.67l2.099-2.366-1.5-2.598-3.099.634L14.544 6l-1-3Z"
189
334
  })
190
335
  )
191
336
  );
192
337
 
193
- const IconCross = forwardRef(
338
+ const IconCrossCircle = forwardRef(
194
339
  ({ size = "medium", ...props }, forwardRef2) => createElement(
195
340
  StyledIcon,
196
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
197
- /* @__PURE__ */ React.createElement("path", {
198
- d: "M0 0h24v24H0z"
199
- }),
341
+ {
342
+ ...props,
343
+ size,
344
+ viewBox: "0 0 24 24",
345
+ fill: "none",
346
+ ref: forwardRef2
347
+ },
200
348
  /* @__PURE__ */ React.createElement("path", {
201
349
  stroke: "currentColor",
202
350
  strokeLinecap: "round",
203
351
  strokeWidth: 2,
204
- d: "m6 6 12 12m0-12L6 18"
352
+ d: "m9 9 6 6m0-6-6 6m12-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
205
353
  })
206
354
  )
207
355
  );
208
356
 
209
- const IconEnvelope = forwardRef(
357
+ const IconCross = forwardRef(
210
358
  ({ size = "medium", ...props }, forwardRef2) => createElement(
211
359
  StyledIcon,
212
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
360
+ {
361
+ ...props,
362
+ size,
363
+ viewBox: "0 0 24 24",
364
+ fill: "none",
365
+ ref: forwardRef2
366
+ },
213
367
  /* @__PURE__ */ React.createElement("path", {
214
- d: "M0 0h24v24H0z"
215
- }),
216
- /* @__PURE__ */ React.createElement("rect", {
217
- width: 18,
218
- height: 14,
219
- x: 3,
220
- y: 5,
221
368
  stroke: "currentColor",
369
+ strokeLinecap: "round",
222
370
  strokeWidth: 2,
223
- rx: 2
224
- }),
371
+ d: "m6 6 12 12m0-12L6 18"
372
+ })
373
+ )
374
+ );
375
+
376
+ const IconEnvelope = forwardRef(
377
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
378
+ StyledIcon,
379
+ {
380
+ ...props,
381
+ size,
382
+ viewBox: "0 0 24 24",
383
+ fill: "none",
384
+ ref: forwardRef2
385
+ },
225
386
  /* @__PURE__ */ React.createElement("path", {
226
387
  stroke: "currentColor",
227
388
  strokeLinecap: "round",
228
389
  strokeWidth: 2,
229
- d: "m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9"
390
+ d: "m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9M4 19h16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Z"
230
391
  })
231
392
  )
232
393
  );
@@ -234,22 +395,24 @@ const IconEnvelope = forwardRef(
234
395
  const IconExclamationPointCircle = forwardRef(
235
396
  ({ size = "medium", ...props }, forwardRef2) => createElement(
236
397
  StyledIcon,
237
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
238
- /* @__PURE__ */ React.createElement("path", {
239
- d: "M0 0h24v24H0z"
240
- }),
398
+ {
399
+ ...props,
400
+ size,
401
+ viewBox: "0 0 24 24",
402
+ fill: "none",
403
+ ref: forwardRef2
404
+ },
241
405
  /* @__PURE__ */ React.createElement("circle", {
242
406
  cx: 12,
243
- cy: 12,
244
- r: 9,
245
- stroke: "currentColor",
246
- strokeWidth: 2
407
+ cy: 15.5,
408
+ r: 1,
409
+ fill: "currentColor"
247
410
  }),
248
411
  /* @__PURE__ */ React.createElement("path", {
249
412
  stroke: "currentColor",
250
413
  strokeLinecap: "round",
251
414
  strokeWidth: 2,
252
- d: "M12 7v6m0 3.5v.5"
415
+ d: "M12 8v4m9 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5 3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"
253
416
  })
254
417
  )
255
418
  );
@@ -257,68 +420,79 @@ const IconExclamationPointCircle = forwardRef(
257
420
  const IconGlobe = forwardRef(
258
421
  ({ size = "medium", ...props }, forwardRef2) => createElement(
259
422
  StyledIcon,
260
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
261
- /* @__PURE__ */ React.createElement("path", {
262
- d: "M0 0h24v24H0z"
263
- }),
264
- /* @__PURE__ */ React.createElement("circle", {
265
- cx: 12,
266
- cy: 12,
267
- r: 9,
268
- stroke: "currentColor",
269
- strokeWidth: 2
270
- }),
423
+ {
424
+ ...props,
425
+ size,
426
+ viewBox: "0 0 24 24",
427
+ fill: "none",
428
+ ref: forwardRef2
429
+ },
271
430
  /* @__PURE__ */ React.createElement("path", {
272
431
  stroke: "currentColor",
273
432
  strokeLinecap: "round",
274
433
  strokeWidth: 2,
275
- d: "M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16"
434
+ d: "M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16m1-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
276
435
  })
277
436
  )
278
437
  );
279
438
 
280
- const IconIconPlaceholder = forwardRef(
439
+ const IconHouse = forwardRef(
281
440
  ({ size = "medium", ...props }, forwardRef2) => createElement(
282
441
  StyledIcon,
283
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
442
+ {
443
+ ...props,
444
+ size,
445
+ viewBox: "0 0 24 24",
446
+ fill: "none",
447
+ ref: forwardRef2
448
+ },
284
449
  /* @__PURE__ */ React.createElement("path", {
285
- d: "M0 0h24v24H0z"
286
- }),
450
+ fill: "currentColor",
451
+ d: "m12 4.4.707-.707L12 2.986l-.707.707L12 4.4Zm-9.707 8.293a1 1 0 1 0 1.414 1.414l-1.414-1.414Zm18 1.414a1 1 0 0 0 1.414-1.414l-1.414 1.414Zm-9-10.414-9 9 1.414 1.414 9-9-1.414-1.414Zm0 1.414 9 9 1.414-1.414-9-9-1.414 1.414ZM7 19v-8.5H5V19h2Zm0 0H5a2 2 0 0 0 2 2v-2Zm10 0H7v2h10v-2Zm0 0v2a2 2 0 0 0 2-2h-2Zm0-8.5V19h2v-8.5h-2Z"
452
+ })
453
+ )
454
+ );
455
+
456
+ const IconInformationMarkCircle = forwardRef(
457
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
458
+ StyledIcon,
459
+ {
460
+ ...props,
461
+ size,
462
+ viewBox: "0 0 24 24",
463
+ fill: "none",
464
+ ref: forwardRef2
465
+ },
287
466
  /* @__PURE__ */ React.createElement("circle", {
288
467
  cx: 12,
289
- cy: 12,
290
- r: 9,
291
- stroke: "currentColor",
292
- strokeWidth: 2
468
+ cy: 8.5,
469
+ r: 1,
470
+ fill: "currentColor"
293
471
  }),
294
472
  /* @__PURE__ */ React.createElement("path", {
295
473
  stroke: "currentColor",
296
474
  strokeLinecap: "round",
297
475
  strokeWidth: 2,
298
- d: "m3 3 18 18m0-18L3 21"
476
+ d: "M12 12v4m9-4a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-8.5-3.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"
299
477
  })
300
478
  )
301
479
  );
302
480
 
303
- const IconInformationMarkCircle = forwardRef(
481
+ const IconLink = forwardRef(
304
482
  ({ size = "medium", ...props }, forwardRef2) => createElement(
305
483
  StyledIcon,
306
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
307
- /* @__PURE__ */ React.createElement("path", {
308
- d: "M0 0h24v24H0z"
309
- }),
310
- /* @__PURE__ */ React.createElement("circle", {
311
- cx: 12,
312
- cy: 12,
313
- r: 9,
314
- stroke: "currentColor",
315
- strokeWidth: 2
316
- }),
484
+ {
485
+ ...props,
486
+ size,
487
+ viewBox: "0 0 24 24",
488
+ fill: "none",
489
+ ref: forwardRef2
490
+ },
317
491
  /* @__PURE__ */ React.createElement("path", {
318
492
  stroke: "currentColor",
319
493
  strokeLinecap: "round",
320
494
  strokeWidth: 2,
321
- d: "M12 6.5V7m0 4v6"
495
+ d: "m7.757 11.293-3.182 3.182a3.5 3.5 0 0 0 4.95 4.95l3.182-3.182M10.939 8.11l3.535-3.535a3.5 3.5 0 1 1 4.95 4.95L15.89 13.06m-7.425 2.475 7.071-7.071"
322
496
  })
323
497
  )
324
498
  );
@@ -326,37 +500,24 @@ const IconInformationMarkCircle = forwardRef(
326
500
  const IconLockClosed = forwardRef(
327
501
  ({ size = "medium", ...props }, forwardRef2) => createElement(
328
502
  StyledIcon,
329
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
330
- /* @__PURE__ */ React.createElement("path", {
331
- d: "M0 0h24v24H0z"
332
- }),
503
+ {
504
+ ...props,
505
+ size,
506
+ viewBox: "0 0 24 24",
507
+ fill: "none",
508
+ ref: forwardRef2
509
+ },
333
510
  /* @__PURE__ */ React.createElement("circle", {
334
511
  cx: 12,
335
512
  cy: 16,
336
513
  r: 1,
337
514
  fill: "currentColor"
338
515
  }),
339
- /* @__PURE__ */ React.createElement("rect", {
340
- width: 14,
341
- height: 10,
342
- x: 5,
343
- y: 11,
344
- stroke: "currentColor",
345
- strokeWidth: 2,
346
- rx: 2
347
- }),
348
516
  /* @__PURE__ */ React.createElement("path", {
349
517
  stroke: "currentColor",
350
518
  strokeLinecap: "round",
351
519
  strokeWidth: 2,
352
- d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6"
353
- }),
354
- /* @__PURE__ */ React.createElement("circle", {
355
- cx: 12,
356
- cy: 16,
357
- r: 1,
358
- stroke: "currentColor",
359
- strokeWidth: 2
520
+ d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
360
521
  })
361
522
  )
362
523
  );
@@ -364,37 +525,43 @@ const IconLockClosed = forwardRef(
364
525
  const IconLockOpen = forwardRef(
365
526
  ({ size = "medium", ...props }, forwardRef2) => createElement(
366
527
  StyledIcon,
367
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
368
- /* @__PURE__ */ React.createElement("path", {
369
- d: "M0 0h24v24H0z"
370
- }),
528
+ {
529
+ ...props,
530
+ size,
531
+ viewBox: "0 0 24 24",
532
+ fill: "none",
533
+ ref: forwardRef2
534
+ },
371
535
  /* @__PURE__ */ React.createElement("circle", {
372
536
  cx: 12,
373
537
  cy: 16,
374
538
  r: 1,
375
539
  fill: "currentColor"
376
540
  }),
377
- /* @__PURE__ */ React.createElement("rect", {
378
- width: 14,
379
- height: 10,
380
- x: 5,
381
- y: 11,
541
+ /* @__PURE__ */ React.createElement("path", {
382
542
  stroke: "currentColor",
543
+ strokeLinecap: "round",
383
544
  strokeWidth: 2,
384
- rx: 2
385
- }),
545
+ d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5M7 21h10a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2Zm6-5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"
546
+ })
547
+ )
548
+ );
549
+
550
+ const IconMagnifyingGlass = forwardRef(
551
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
552
+ StyledIcon,
553
+ {
554
+ ...props,
555
+ size,
556
+ viewBox: "0 0 24 24",
557
+ fill: "none",
558
+ ref: forwardRef2
559
+ },
386
560
  /* @__PURE__ */ React.createElement("path", {
387
561
  stroke: "currentColor",
388
562
  strokeLinecap: "round",
389
563
  strokeWidth: 2,
390
- d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5"
391
- }),
392
- /* @__PURE__ */ React.createElement("circle", {
393
- cx: 12,
394
- cy: 16,
395
- r: 1,
396
- stroke: "currentColor",
397
- strokeWidth: 2
564
+ d: "m20 20-5.5-5.5M16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"
398
565
  })
399
566
  )
400
567
  );
@@ -402,10 +569,13 @@ const IconLockOpen = forwardRef(
402
569
  const IconMinus = forwardRef(
403
570
  ({ size = "medium", ...props }, forwardRef2) => createElement(
404
571
  StyledIcon,
405
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
406
- /* @__PURE__ */ React.createElement("path", {
407
- d: "M0 0h24v24H0z"
408
- }),
572
+ {
573
+ ...props,
574
+ size,
575
+ viewBox: "0 0 24 24",
576
+ fill: "none",
577
+ ref: forwardRef2
578
+ },
409
579
  /* @__PURE__ */ React.createElement("path", {
410
580
  stroke: "currentColor",
411
581
  strokeLinecap: "round",
@@ -415,64 +585,78 @@ const IconMinus = forwardRef(
415
585
  )
416
586
  );
417
587
 
418
- const IconPlus = forwardRef(
588
+ const IconPlaceholder = forwardRef(
419
589
  ({ size = "medium", ...props }, forwardRef2) => createElement(
420
590
  StyledIcon,
421
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
422
- /* @__PURE__ */ React.createElement("path", {
423
- d: "M0 0h24v24H0z"
424
- }),
591
+ {
592
+ ...props,
593
+ size,
594
+ viewBox: "0 0 24 24",
595
+ fill: "none",
596
+ ref: forwardRef2
597
+ },
425
598
  /* @__PURE__ */ React.createElement("path", {
426
599
  stroke: "currentColor",
427
600
  strokeLinecap: "round",
428
601
  strokeWidth: 2,
429
- d: "M5 12h14m-7-7v14"
602
+ d: "m3 3 18 18m0-18L3 21m18-9a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
430
603
  })
431
604
  )
432
605
  );
433
606
 
434
- const IconQuestionMark = forwardRef(
607
+ const IconPlug = forwardRef(
435
608
  ({ size = "medium", ...props }, forwardRef2) => createElement(
436
609
  StyledIcon,
437
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
438
- /* @__PURE__ */ React.createElement("path", {
439
- d: "M0 0h24v24H0z"
440
- }),
441
- /* @__PURE__ */ React.createElement("circle", {
442
- cx: 12,
443
- cy: 12,
444
- r: 9,
445
- stroke: "currentColor",
446
- strokeWidth: 2
447
- }),
610
+ {
611
+ ...props,
612
+ size,
613
+ viewBox: "0 0 24 24",
614
+ fill: "none",
615
+ ref: forwardRef2
616
+ },
448
617
  /* @__PURE__ */ React.createElement("path", {
449
618
  stroke: "currentColor",
450
619
  strokeLinecap: "round",
451
620
  strokeWidth: 2,
452
- d: "M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1"
621
+ d: "m12.385 5.9 3.535-3.536m2.122 9.192 3.535-3.535M3.192 20.749l4.95-4.95m2.122-12.02 9.899 9.899-3.536 3.535a5 5 0 0 1-7.07 0l-2.83-2.828a5 5 0 0 1 0-7.071l3.537-3.536Z"
453
622
  })
454
623
  )
455
624
  );
456
625
 
457
- const IconSearch = forwardRef(
626
+ const IconPlus = forwardRef(
458
627
  ({ size = "medium", ...props }, forwardRef2) => createElement(
459
628
  StyledIcon,
460
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
629
+ {
630
+ ...props,
631
+ size,
632
+ viewBox: "0 0 24 24",
633
+ fill: "none",
634
+ ref: forwardRef2
635
+ },
461
636
  /* @__PURE__ */ React.createElement("path", {
462
- d: "M0 0h24v24H0z"
463
- }),
464
- /* @__PURE__ */ React.createElement("circle", {
465
- cx: 10,
466
- cy: 10,
467
- r: 6,
468
637
  stroke: "currentColor",
469
- strokeWidth: 2
470
- }),
638
+ strokeLinecap: "round",
639
+ strokeWidth: 2,
640
+ d: "M5 12h14m-7-7v14"
641
+ })
642
+ )
643
+ );
644
+
645
+ const IconQuestionMarkCircle = forwardRef(
646
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
647
+ StyledIcon,
648
+ {
649
+ ...props,
650
+ size,
651
+ viewBox: "0 0 24 24",
652
+ fill: "none",
653
+ ref: forwardRef2
654
+ },
471
655
  /* @__PURE__ */ React.createElement("path", {
472
656
  stroke: "currentColor",
473
657
  strokeLinecap: "round",
474
658
  strokeWidth: 2,
475
- d: "m20 20-5.5-5.5"
659
+ d: "M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1m9-5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
476
660
  })
477
661
  )
478
662
  );
@@ -480,10 +664,13 @@ const IconSearch = forwardRef(
480
664
  const IconSocialFacebook = forwardRef(
481
665
  ({ size = "medium", ...props }, forwardRef2) => createElement(
482
666
  StyledIcon,
483
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
484
- /* @__PURE__ */ React.createElement("path", {
485
- d: "M0 0h24v24H0z"
486
- }),
667
+ {
668
+ ...props,
669
+ size,
670
+ viewBox: "0 0 24 24",
671
+ fill: "none",
672
+ ref: forwardRef2
673
+ },
487
674
  /* @__PURE__ */ React.createElement("path", {
488
675
  fill: "currentColor",
489
676
  d: "M22 12.061C22 6.505 17.523 2 12 2S2 6.505 2 12.061c0 5.022 3.657 9.184 8.438 9.939v-7.03h-2.54v-2.91h2.54V9.845c0-2.522 1.492-3.915 3.777-3.915 1.094 0 2.238.197 2.238.197v2.476h-1.26c-1.243 0-1.63.775-1.63 1.57v1.888h2.773l-.443 2.908h-2.33V22c4.78-.755 8.437-4.917 8.437-9.939Z"
@@ -494,10 +681,13 @@ const IconSocialFacebook = forwardRef(
494
681
  const IconSocialInstagram = forwardRef(
495
682
  ({ size = "medium", ...props }, forwardRef2) => createElement(
496
683
  StyledIcon,
497
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
498
- /* @__PURE__ */ React.createElement("path", {
499
- d: "M0 0h24v24H0z"
500
- }),
684
+ {
685
+ ...props,
686
+ size,
687
+ viewBox: "0 0 24 24",
688
+ fill: "none",
689
+ ref: forwardRef2
690
+ },
501
691
  /* @__PURE__ */ React.createElement("path", {
502
692
  fill: "currentColor",
503
693
  d: "M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"
@@ -514,10 +704,13 @@ const IconSocialInstagram = forwardRef(
514
704
  const IconSocialLinkedin = forwardRef(
515
705
  ({ size = "medium", ...props }, forwardRef2) => createElement(
516
706
  StyledIcon,
517
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
518
- /* @__PURE__ */ React.createElement("path", {
519
- d: "M0 0h24v24H0z"
520
- }),
707
+ {
708
+ ...props,
709
+ size,
710
+ viewBox: "0 0 24 24",
711
+ fill: "none",
712
+ ref: forwardRef2
713
+ },
521
714
  /* @__PURE__ */ React.createElement("path", {
522
715
  fill: "currentColor",
523
716
  d: "M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z"
@@ -528,10 +721,13 @@ const IconSocialLinkedin = forwardRef(
528
721
  const IconSocialTwitter = forwardRef(
529
722
  ({ size = "medium", ...props }, forwardRef2) => createElement(
530
723
  StyledIcon,
531
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
532
- /* @__PURE__ */ React.createElement("path", {
533
- d: "M0 0h24v24H0z"
534
- }),
724
+ {
725
+ ...props,
726
+ size,
727
+ viewBox: "0 0 24 24",
728
+ fill: "none",
729
+ ref: forwardRef2
730
+ },
535
731
  /* @__PURE__ */ React.createElement("path", {
536
732
  fill: "currentColor",
537
733
  d: "M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829c-1.19 2.065-.574 4.741 1.4 6.067a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039"
@@ -542,10 +738,13 @@ const IconSocialTwitter = forwardRef(
542
738
  const IconSocialYoutube = forwardRef(
543
739
  ({ size = "medium", ...props }, forwardRef2) => createElement(
544
740
  StyledIcon,
545
- { ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
546
- /* @__PURE__ */ React.createElement("path", {
547
- d: "M0 0h24v24H0z"
548
- }),
741
+ {
742
+ ...props,
743
+ size,
744
+ viewBox: "0 0 24 24",
745
+ fill: "none",
746
+ ref: forwardRef2
747
+ },
549
748
  /* @__PURE__ */ React.createElement("path", {
550
749
  fill: "currentColor",
551
750
  d: "M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z"
@@ -553,5 +752,87 @@ const IconSocialYoutube = forwardRef(
553
752
  )
554
753
  );
555
754
 
556
- export { IconArrowLeft, IconArrowRight, IconArrowTopRight, IconBarThree, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCross, IconCrossCircle, IconEnvelope, IconExclamationPointCircle, IconGlobe, IconIconPlaceholder, IconInformationMarkCircle, IconLockClosed, IconLockOpen, IconMinus, IconPlus, IconQuestionMark, IconSearch, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube };
755
+ const IconUserAdd = forwardRef(
756
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
757
+ StyledIcon,
758
+ {
759
+ ...props,
760
+ size,
761
+ viewBox: "0 0 24 24",
762
+ fill: "none",
763
+ ref: forwardRef2
764
+ },
765
+ /* @__PURE__ */ React.createElement("path", {
766
+ stroke: "currentColor",
767
+ strokeLinecap: "round",
768
+ strokeWidth: 2,
769
+ d: "M2 11h3m0 0h3m-3 0V8m0 3v3m3 6 .443-2.658A4 4 0 0 1 12.389 14h5.223a4 4 0 0 1 3.945 3.342L22 20M18 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
770
+ })
771
+ )
772
+ );
773
+
774
+ const IconUser = forwardRef(
775
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
776
+ StyledIcon,
777
+ {
778
+ ...props,
779
+ size,
780
+ viewBox: "0 0 24 24",
781
+ fill: "none",
782
+ ref: forwardRef2
783
+ },
784
+ /* @__PURE__ */ React.createElement("path", {
785
+ stroke: "currentColor",
786
+ strokeLinecap: "round",
787
+ strokeWidth: 2,
788
+ d: "m4 20 .443-2.658A4 4 0 0 1 8.389 14h7.223a4 4 0 0 1 3.945 3.342L20 20M16 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
789
+ })
790
+ )
791
+ );
792
+
793
+ const IconUsers = forwardRef(
794
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
795
+ StyledIcon,
796
+ {
797
+ ...props,
798
+ size,
799
+ viewBox: "0 0 24 24",
800
+ fill: "none",
801
+ ref: forwardRef2
802
+ },
803
+ /* @__PURE__ */ React.createElement("path", {
804
+ stroke: "currentColor",
805
+ strokeLinecap: "round",
806
+ strokeWidth: 2,
807
+ d: "m1 20 .443-2.658A4 4 0 0 1 5.389 14h5.222a4 4 0 0 1 3.946 3.342L15 20m3-4h1.852a3 3 0 0 1 2.977 2.628L23 20M11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm9 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z"
808
+ })
809
+ )
810
+ );
811
+
812
+ const IconWallet = forwardRef(
813
+ ({ size = "medium", ...props }, forwardRef2) => createElement(
814
+ StyledIcon,
815
+ {
816
+ ...props,
817
+ size,
818
+ viewBox: "0 0 24 24",
819
+ fill: "none",
820
+ ref: forwardRef2
821
+ },
822
+ /* @__PURE__ */ React.createElement("path", {
823
+ stroke: "currentColor",
824
+ strokeLinecap: "square",
825
+ strokeWidth: 2,
826
+ d: "M20 16V4H6a2 2 0 0 0-2 2v11m14-1H6a2 2 0 1 0 0 4h12v-4Z"
827
+ }),
828
+ /* @__PURE__ */ React.createElement("circle", {
829
+ cx: 15.5,
830
+ cy: 10,
831
+ r: 1.5,
832
+ fill: "currentColor"
833
+ })
834
+ )
835
+ );
836
+
837
+ export { IconArrowBoxOut, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconBarThree, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCog, IconCross, IconCrossCircle, IconEnvelope, IconExclamationPointCircle, IconGlobe, IconHouse, IconInformationMarkCircle, IconLink, IconLockClosed, IconLockOpen, IconMagnifyingGlass, IconMinus, IconPlaceholder, IconPlug, IconPlus, IconQuestionMarkCircle, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconUser, IconUserAdd, IconUsers, IconWallet };
557
838
  //# sourceMappingURL=module.js.map