@goodhood-web/ui 2.1.0-development.3 → 2.1.0-development.30

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 (59) hide show
  1. package/index.d.ts +8 -4
  2. package/index.js +124 -124
  3. package/index.mjs +19359 -19164
  4. package/lib/Atoms/Badges/Badge/Badge.types.d.ts +2 -3
  5. package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +2 -1
  6. package/lib/Atoms/Badges/BadgeLabel/BadgeLabel.types.d.ts +1 -1
  7. package/lib/Atoms/Badges/Tooltip/Tooltip.d.ts +1 -1
  8. package/lib/Atoms/Badges/Tooltip/Tooltip.types.d.ts +2 -0
  9. package/lib/Atoms/Buttons/Button/Button.d.ts +2 -2
  10. package/lib/Atoms/Buttons/Button/Button.types.d.ts +1 -1
  11. package/lib/Atoms/Buttons/IconButton/IconButton.d.ts +1 -1
  12. package/lib/Atoms/Buttons/IconButton/IconButton.types.d.ts +1 -1
  13. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.d.ts +1 -1
  14. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.types.d.ts +1 -0
  15. package/lib/Atoms/Content/BodyText/BodyText.d.ts +1 -1
  16. package/lib/Atoms/Content/BodyText/BodyText.types.d.ts +1 -0
  17. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.d.ts +3 -0
  18. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.types.d.ts +42 -0
  19. package/lib/Atoms/Content/UserAvatarCluster/utils.d.ts +41 -0
  20. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.d.ts +3 -0
  21. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.types.d.ts +9 -0
  22. package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +3 -0
  23. package/lib/Atoms/Dropdowns/{DropdownOption/DropdownOption.types.d.ts → DropdownItem/DropdownItem.types.d.ts} +1 -1
  24. package/lib/Base/Icon/Icon.types.d.ts +10 -6
  25. package/lib/Base/Icon/icons/coloured/32x32/index.d.ts +39 -0
  26. package/lib/Base/Icon/icons/coloured/index.d.ts +43 -0
  27. package/lib/Base/Icon/icons/filled/16x16/index.d.ts +9 -0
  28. package/lib/Base/Icon/icons/filled/24x24/index.d.ts +15 -0
  29. package/lib/Base/Icon/icons/filled/32x32/index.d.ts +21 -0
  30. package/lib/Base/Icon/icons/filled/index.d.ts +45 -0
  31. package/lib/Base/Icon/icons/index.d.ts +1081 -492
  32. package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +18 -3
  33. package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +159 -12
  34. package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +360 -21
  35. package/lib/Base/Icon/icons/outline/index.d.ts +999 -0
  36. package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
  37. package/lib/Base/SocialIcon/SocialIcon.types.d.ts +22 -0
  38. package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +159 -0
  39. package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +171 -0
  40. package/lib/Base/SocialIcon/icons/index.d.ts +331 -0
  41. package/lib/Base/Typography/Typography.types.d.ts +1 -1
  42. package/lib/Molecules/ListItemCluster/ListItemCluster.d.ts +3 -0
  43. package/lib/Molecules/ListItemCluster/ListItemCluster.types.d.ts +4 -0
  44. package/lib/Molecules/ListItems/ListItem.d.ts +3 -0
  45. package/lib/Molecules/ListItems/ListItem.types.d.ts +9 -0
  46. package/lib/Molecules/ListItems/Neighbour/Neighbour.d.ts +3 -0
  47. package/lib/Molecules/ListItems/Neighbour/Neighbour.types.d.ts +22 -0
  48. package/lib/Molecules/Markdown/Markdown.d.ts +1 -1
  49. package/lib/Molecules/Markdown/Markdown.types.d.ts +2 -0
  50. package/lib/Molecules/Notices/EmptyState/EmptyState.d.ts +1 -1
  51. package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +1 -0
  52. package/package.json +1 -1
  53. package/style.css +1 -1
  54. package/styles/_media.scss +6 -0
  55. package/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.d.ts +0 -3
  56. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.d.ts +0 -3
  57. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.types.d.ts +0 -4
  58. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.d.ts +0 -2
  59. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.types.d.ts +0 -12
@@ -0,0 +1,999 @@
1
+ declare const iconsMap: {
2
+ '16': {
3
+ chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
4
+ title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
8
+ }>;
9
+ chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
10
+ title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
14
+ }>;
15
+ chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
16
+ title?: string;
17
+ titleId?: string;
18
+ desc?: string;
19
+ descId?: string;
20
+ }>;
21
+ chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
22
+ title?: string;
23
+ titleId?: string;
24
+ desc?: string;
25
+ descId?: string;
26
+ }>;
27
+ heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
28
+ title?: string;
29
+ titleId?: string;
30
+ desc?: string;
31
+ descId?: string;
32
+ }>;
33
+ privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
34
+ title?: string;
35
+ titleId?: string;
36
+ desc?: string;
37
+ descId?: string;
38
+ }>;
39
+ };
40
+ '24': {
41
+ readonly arrow_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
42
+ title?: string;
43
+ titleId?: string;
44
+ desc?: string;
45
+ descId?: string;
46
+ }>;
47
+ readonly arrow_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
48
+ title?: string;
49
+ titleId?: string;
50
+ desc?: string;
51
+ descId?: string;
52
+ }>;
53
+ readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
54
+ title?: string;
55
+ titleId?: string;
56
+ desc?: string;
57
+ descId?: string;
58
+ }>;
59
+ readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
60
+ title?: string;
61
+ titleId?: string;
62
+ desc?: string;
63
+ descId?: string;
64
+ }>;
65
+ readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
66
+ title?: string;
67
+ titleId?: string;
68
+ desc?: string;
69
+ descId?: string;
70
+ }>;
71
+ readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
72
+ title?: string;
73
+ titleId?: string;
74
+ desc?: string;
75
+ descId?: string;
76
+ }>;
77
+ readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
78
+ title?: string;
79
+ titleId?: string;
80
+ desc?: string;
81
+ descId?: string;
82
+ }>;
83
+ readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
84
+ title?: string;
85
+ titleId?: string;
86
+ desc?: string;
87
+ descId?: string;
88
+ }>;
89
+ readonly chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
90
+ title?: string;
91
+ titleId?: string;
92
+ desc?: string;
93
+ descId?: string;
94
+ }>;
95
+ readonly chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
96
+ title?: string;
97
+ titleId?: string;
98
+ desc?: string;
99
+ descId?: string;
100
+ }>;
101
+ readonly chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
102
+ title?: string;
103
+ titleId?: string;
104
+ desc?: string;
105
+ descId?: string;
106
+ }>;
107
+ readonly chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
108
+ title?: string;
109
+ titleId?: string;
110
+ desc?: string;
111
+ descId?: string;
112
+ }>;
113
+ readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
114
+ title?: string;
115
+ titleId?: string;
116
+ desc?: string;
117
+ descId?: string;
118
+ }>;
119
+ readonly copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
120
+ title?: string;
121
+ titleId?: string;
122
+ desc?: string;
123
+ descId?: string;
124
+ }>;
125
+ readonly cross: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
126
+ title?: string;
127
+ titleId?: string;
128
+ desc?: string;
129
+ descId?: string;
130
+ }>;
131
+ readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
132
+ title?: string;
133
+ titleId?: string;
134
+ desc?: string;
135
+ descId?: string;
136
+ }>;
137
+ readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
138
+ title?: string;
139
+ titleId?: string;
140
+ desc?: string;
141
+ descId?: string;
142
+ }>;
143
+ readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
144
+ title?: string;
145
+ titleId?: string;
146
+ desc?: string;
147
+ descId?: string;
148
+ }>;
149
+ readonly external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
150
+ title?: string;
151
+ titleId?: string;
152
+ desc?: string;
153
+ descId?: string;
154
+ }>;
155
+ readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
156
+ title?: string;
157
+ titleId?: string;
158
+ desc?: string;
159
+ descId?: string;
160
+ }>;
161
+ readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
162
+ title?: string;
163
+ titleId?: string;
164
+ desc?: string;
165
+ descId?: string;
166
+ }>;
167
+ readonly filter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
168
+ title?: string;
169
+ titleId?: string;
170
+ desc?: string;
171
+ descId?: string;
172
+ }>;
173
+ readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
174
+ title?: string;
175
+ titleId?: string;
176
+ desc?: string;
177
+ descId?: string;
178
+ }>;
179
+ readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
180
+ title?: string;
181
+ titleId?: string;
182
+ desc?: string;
183
+ descId?: string;
184
+ }>;
185
+ readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
186
+ title?: string;
187
+ titleId?: string;
188
+ desc?: string;
189
+ descId?: string;
190
+ }>;
191
+ readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
192
+ title?: string;
193
+ titleId?: string;
194
+ desc?: string;
195
+ descId?: string;
196
+ }>;
197
+ readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
198
+ title?: string;
199
+ titleId?: string;
200
+ desc?: string;
201
+ descId?: string;
202
+ }>;
203
+ readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
204
+ title?: string;
205
+ titleId?: string;
206
+ desc?: string;
207
+ descId?: string;
208
+ }>;
209
+ readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
210
+ title?: string;
211
+ titleId?: string;
212
+ desc?: string;
213
+ descId?: string;
214
+ }>;
215
+ readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
216
+ title?: string;
217
+ titleId?: string;
218
+ desc?: string;
219
+ descId?: string;
220
+ }>;
221
+ readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
222
+ title?: string;
223
+ titleId?: string;
224
+ desc?: string;
225
+ descId?: string;
226
+ }>;
227
+ readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
228
+ title?: string;
229
+ titleId?: string;
230
+ desc?: string;
231
+ descId?: string;
232
+ }>;
233
+ readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
234
+ title?: string;
235
+ titleId?: string;
236
+ desc?: string;
237
+ descId?: string;
238
+ }>;
239
+ readonly mute: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
240
+ title?: string;
241
+ titleId?: string;
242
+ desc?: string;
243
+ descId?: string;
244
+ }>;
245
+ readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
246
+ title?: string;
247
+ titleId?: string;
248
+ desc?: string;
249
+ descId?: string;
250
+ }>;
251
+ readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
252
+ title?: string;
253
+ titleId?: string;
254
+ desc?: string;
255
+ descId?: string;
256
+ }>;
257
+ readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
258
+ title?: string;
259
+ titleId?: string;
260
+ desc?: string;
261
+ descId?: string;
262
+ }>;
263
+ readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
264
+ title?: string;
265
+ titleId?: string;
266
+ desc?: string;
267
+ descId?: string;
268
+ }>;
269
+ readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
270
+ title?: string;
271
+ titleId?: string;
272
+ desc?: string;
273
+ descId?: string;
274
+ }>;
275
+ readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
276
+ title?: string;
277
+ titleId?: string;
278
+ desc?: string;
279
+ descId?: string;
280
+ }>;
281
+ readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
282
+ title?: string;
283
+ titleId?: string;
284
+ desc?: string;
285
+ descId?: string;
286
+ }>;
287
+ readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
288
+ title?: string;
289
+ titleId?: string;
290
+ desc?: string;
291
+ descId?: string;
292
+ }>;
293
+ readonly react: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
294
+ title?: string;
295
+ titleId?: string;
296
+ desc?: string;
297
+ descId?: string;
298
+ }>;
299
+ readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
300
+ title?: string;
301
+ titleId?: string;
302
+ desc?: string;
303
+ descId?: string;
304
+ }>;
305
+ readonly share_arrow: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
306
+ title?: string;
307
+ titleId?: string;
308
+ desc?: string;
309
+ descId?: string;
310
+ }>;
311
+ readonly share_arrow_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
312
+ title?: string;
313
+ titleId?: string;
314
+ desc?: string;
315
+ descId?: string;
316
+ }>;
317
+ readonly sort: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
318
+ title?: string;
319
+ titleId?: string;
320
+ desc?: string;
321
+ descId?: string;
322
+ }>;
323
+ readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
324
+ title?: string;
325
+ titleId?: string;
326
+ desc?: string;
327
+ descId?: string;
328
+ }>;
329
+ readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
330
+ title?: string;
331
+ titleId?: string;
332
+ desc?: string;
333
+ descId?: string;
334
+ }>;
335
+ readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
336
+ title?: string;
337
+ titleId?: string;
338
+ desc?: string;
339
+ descId?: string;
340
+ }>;
341
+ };
342
+ '32': {
343
+ readonly address_book: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
344
+ title?: string;
345
+ titleId?: string;
346
+ desc?: string;
347
+ descId?: string;
348
+ }>;
349
+ readonly baby_toy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
350
+ title?: string;
351
+ titleId?: string;
352
+ desc?: string;
353
+ descId?: string;
354
+ }>;
355
+ readonly bicycle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
356
+ title?: string;
357
+ titleId?: string;
358
+ desc?: string;
359
+ descId?: string;
360
+ }>;
361
+ readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
362
+ title?: string;
363
+ titleId?: string;
364
+ desc?: string;
365
+ descId?: string;
366
+ }>;
367
+ readonly books: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
368
+ title?: string;
369
+ titleId?: string;
370
+ desc?: string;
371
+ descId?: string;
372
+ }>;
373
+ readonly bubble_heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
374
+ title?: string;
375
+ titleId?: string;
376
+ desc?: string;
377
+ descId?: string;
378
+ }>;
379
+ readonly buildings: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
380
+ title?: string;
381
+ titleId?: string;
382
+ desc?: string;
383
+ descId?: string;
384
+ }>;
385
+ readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
386
+ title?: string;
387
+ titleId?: string;
388
+ desc?: string;
389
+ descId?: string;
390
+ }>;
391
+ readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
392
+ title?: string;
393
+ titleId?: string;
394
+ desc?: string;
395
+ descId?: string;
396
+ }>;
397
+ readonly business_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
398
+ title?: string;
399
+ titleId?: string;
400
+ desc?: string;
401
+ descId?: string;
402
+ }>;
403
+ readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
404
+ title?: string;
405
+ titleId?: string;
406
+ desc?: string;
407
+ descId?: string;
408
+ }>;
409
+ readonly camera_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
410
+ title?: string;
411
+ titleId?: string;
412
+ desc?: string;
413
+ descId?: string;
414
+ }>;
415
+ readonly car: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
416
+ title?: string;
417
+ titleId?: string;
418
+ desc?: string;
419
+ descId?: string;
420
+ }>;
421
+ readonly carrot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
422
+ title?: string;
423
+ titleId?: string;
424
+ desc?: string;
425
+ descId?: string;
426
+ }>;
427
+ readonly chat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
428
+ title?: string;
429
+ titleId?: string;
430
+ desc?: string;
431
+ descId?: string;
432
+ }>;
433
+ readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
434
+ title?: string;
435
+ titleId?: string;
436
+ desc?: string;
437
+ descId?: string;
438
+ }>;
439
+ readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
440
+ title?: string;
441
+ titleId?: string;
442
+ desc?: string;
443
+ descId?: string;
444
+ }>;
445
+ readonly clipboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
446
+ title?: string;
447
+ titleId?: string;
448
+ desc?: string;
449
+ descId?: string;
450
+ }>;
451
+ readonly clothing: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
452
+ title?: string;
453
+ titleId?: string;
454
+ desc?: string;
455
+ descId?: string;
456
+ }>;
457
+ readonly cocktail: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
458
+ title?: string;
459
+ titleId?: string;
460
+ desc?: string;
461
+ descId?: string;
462
+ }>;
463
+ readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
464
+ title?: string;
465
+ titleId?: string;
466
+ desc?: string;
467
+ descId?: string;
468
+ }>;
469
+ readonly compass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
470
+ title?: string;
471
+ titleId?: string;
472
+ desc?: string;
473
+ descId?: string;
474
+ }>;
475
+ readonly computer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
476
+ title?: string;
477
+ titleId?: string;
478
+ desc?: string;
479
+ descId?: string;
480
+ }>;
481
+ readonly confetti: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
482
+ title?: string;
483
+ titleId?: string;
484
+ desc?: string;
485
+ descId?: string;
486
+ }>;
487
+ readonly copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
488
+ title?: string;
489
+ titleId?: string;
490
+ desc?: string;
491
+ descId?: string;
492
+ }>;
493
+ readonly couch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
494
+ title?: string;
495
+ titleId?: string;
496
+ desc?: string;
497
+ descId?: string;
498
+ }>;
499
+ readonly credit_card: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
500
+ title?: string;
501
+ titleId?: string;
502
+ desc?: string;
503
+ descId?: string;
504
+ }>;
505
+ readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
506
+ title?: string;
507
+ titleId?: string;
508
+ desc?: string;
509
+ descId?: string;
510
+ }>;
511
+ readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
512
+ title?: string;
513
+ titleId?: string;
514
+ desc?: string;
515
+ descId?: string;
516
+ }>;
517
+ readonly drill_tool: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
518
+ title?: string;
519
+ titleId?: string;
520
+ desc?: string;
521
+ descId?: string;
522
+ }>;
523
+ readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
524
+ title?: string;
525
+ titleId?: string;
526
+ desc?: string;
527
+ descId?: string;
528
+ }>;
529
+ readonly envelop_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
530
+ title?: string;
531
+ titleId?: string;
532
+ desc?: string;
533
+ descId?: string;
534
+ }>;
535
+ readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
536
+ title?: string;
537
+ titleId?: string;
538
+ desc?: string;
539
+ descId?: string;
540
+ }>;
541
+ readonly error: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
542
+ title?: string;
543
+ titleId?: string;
544
+ desc?: string;
545
+ descId?: string;
546
+ }>;
547
+ readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
548
+ title?: string;
549
+ titleId?: string;
550
+ desc?: string;
551
+ descId?: string;
552
+ }>;
553
+ readonly event_calendar_check: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
554
+ title?: string;
555
+ titleId?: string;
556
+ desc?: string;
557
+ descId?: string;
558
+ }>;
559
+ readonly event_calendar_date: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
560
+ title?: string;
561
+ titleId?: string;
562
+ desc?: string;
563
+ descId?: string;
564
+ }>;
565
+ readonly event_calendar_grid: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
566
+ title?: string;
567
+ titleId?: string;
568
+ desc?: string;
569
+ descId?: string;
570
+ }>;
571
+ readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
572
+ title?: string;
573
+ titleId?: string;
574
+ desc?: string;
575
+ descId?: string;
576
+ }>;
577
+ readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
578
+ title?: string;
579
+ titleId?: string;
580
+ desc?: string;
581
+ descId?: string;
582
+ }>;
583
+ readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
584
+ title?: string;
585
+ titleId?: string;
586
+ desc?: string;
587
+ descId?: string;
588
+ }>;
589
+ readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
590
+ title?: string;
591
+ titleId?: string;
592
+ desc?: string;
593
+ descId?: string;
594
+ }>;
595
+ readonly gift_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
596
+ title?: string;
597
+ titleId?: string;
598
+ desc?: string;
599
+ descId?: string;
600
+ }>;
601
+ readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
602
+ title?: string;
603
+ titleId?: string;
604
+ desc?: string;
605
+ descId?: string;
606
+ }>;
607
+ readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
608
+ title?: string;
609
+ titleId?: string;
610
+ desc?: string;
611
+ descId?: string;
612
+ }>;
613
+ readonly healthcare: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
614
+ title?: string;
615
+ titleId?: string;
616
+ desc?: string;
617
+ descId?: string;
618
+ }>;
619
+ readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
620
+ title?: string;
621
+ titleId?: string;
622
+ desc?: string;
623
+ descId?: string;
624
+ }>;
625
+ readonly heart_handshake_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
626
+ title?: string;
627
+ titleId?: string;
628
+ desc?: string;
629
+ descId?: string;
630
+ }>;
631
+ readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
632
+ title?: string;
633
+ titleId?: string;
634
+ desc?: string;
635
+ descId?: string;
636
+ }>;
637
+ readonly house: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
638
+ title?: string;
639
+ titleId?: string;
640
+ desc?: string;
641
+ descId?: string;
642
+ }>;
643
+ readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
644
+ title?: string;
645
+ titleId?: string;
646
+ desc?: string;
647
+ descId?: string;
648
+ }>;
649
+ readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
650
+ title?: string;
651
+ titleId?: string;
652
+ desc?: string;
653
+ descId?: string;
654
+ }>;
655
+ readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
656
+ title?: string;
657
+ titleId?: string;
658
+ desc?: string;
659
+ descId?: string;
660
+ }>;
661
+ readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
662
+ title?: string;
663
+ titleId?: string;
664
+ desc?: string;
665
+ descId?: string;
666
+ }>;
667
+ readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
668
+ title?: string;
669
+ titleId?: string;
670
+ desc?: string;
671
+ descId?: string;
672
+ }>;
673
+ readonly key: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
674
+ title?: string;
675
+ titleId?: string;
676
+ desc?: string;
677
+ descId?: string;
678
+ }>;
679
+ readonly kitchen_pot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
680
+ title?: string;
681
+ titleId?: string;
682
+ desc?: string;
683
+ descId?: string;
684
+ }>;
685
+ readonly link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
686
+ title?: string;
687
+ titleId?: string;
688
+ desc?: string;
689
+ descId?: string;
690
+ }>;
691
+ readonly list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
692
+ title?: string;
693
+ titleId?: string;
694
+ desc?: string;
695
+ descId?: string;
696
+ }>;
697
+ readonly log_in: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
698
+ title?: string;
699
+ titleId?: string;
700
+ desc?: string;
701
+ descId?: string;
702
+ }>;
703
+ readonly log_out: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
704
+ title?: string;
705
+ titleId?: string;
706
+ desc?: string;
707
+ descId?: string;
708
+ }>;
709
+ readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
710
+ title?: string;
711
+ titleId?: string;
712
+ desc?: string;
713
+ descId?: string;
714
+ }>;
715
+ readonly map: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
716
+ title?: string;
717
+ titleId?: string;
718
+ desc?: string;
719
+ descId?: string;
720
+ }>;
721
+ readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
722
+ title?: string;
723
+ titleId?: string;
724
+ desc?: string;
725
+ descId?: string;
726
+ }>;
727
+ readonly miscellaneous_other: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
728
+ title?: string;
729
+ titleId?: string;
730
+ desc?: string;
731
+ descId?: string;
732
+ }>;
733
+ readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
734
+ title?: string;
735
+ titleId?: string;
736
+ desc?: string;
737
+ descId?: string;
738
+ }>;
739
+ readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
740
+ title?: string;
741
+ titleId?: string;
742
+ desc?: string;
743
+ descId?: string;
744
+ }>;
745
+ readonly more_dots_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
746
+ title?: string;
747
+ titleId?: string;
748
+ desc?: string;
749
+ descId?: string;
750
+ }>;
751
+ readonly music: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
752
+ title?: string;
753
+ titleId?: string;
754
+ desc?: string;
755
+ descId?: string;
756
+ }>;
757
+ readonly nebenan_de: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
758
+ title?: string;
759
+ titleId?: string;
760
+ desc?: string;
761
+ descId?: string;
762
+ }>;
763
+ readonly neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
764
+ title?: string;
765
+ titleId?: string;
766
+ desc?: string;
767
+ descId?: string;
768
+ }>;
769
+ readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
770
+ title?: string;
771
+ titleId?: string;
772
+ desc?: string;
773
+ descId?: string;
774
+ }>;
775
+ readonly organisation: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
776
+ title?: string;
777
+ titleId?: string;
778
+ desc?: string;
779
+ descId?: string;
780
+ }>;
781
+ readonly paper_empty: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
782
+ title?: string;
783
+ titleId?: string;
784
+ desc?: string;
785
+ descId?: string;
786
+ }>;
787
+ readonly paper_form: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
788
+ title?: string;
789
+ titleId?: string;
790
+ desc?: string;
791
+ descId?: string;
792
+ }>;
793
+ readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
794
+ title?: string;
795
+ titleId?: string;
796
+ desc?: string;
797
+ descId?: string;
798
+ }>;
799
+ readonly paw: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
800
+ title?: string;
801
+ titleId?: string;
802
+ desc?: string;
803
+ descId?: string;
804
+ }>;
805
+ readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
806
+ title?: string;
807
+ titleId?: string;
808
+ desc?: string;
809
+ descId?: string;
810
+ }>;
811
+ readonly pencil_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
812
+ title?: string;
813
+ titleId?: string;
814
+ desc?: string;
815
+ descId?: string;
816
+ }>;
817
+ readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
818
+ title?: string;
819
+ titleId?: string;
820
+ desc?: string;
821
+ descId?: string;
822
+ }>;
823
+ readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
824
+ title?: string;
825
+ titleId?: string;
826
+ desc?: string;
827
+ descId?: string;
828
+ }>;
829
+ readonly pins: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
830
+ title?: string;
831
+ titleId?: string;
832
+ desc?: string;
833
+ descId?: string;
834
+ }>;
835
+ readonly plant: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
836
+ title?: string;
837
+ titleId?: string;
838
+ desc?: string;
839
+ descId?: string;
840
+ }>;
841
+ readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
842
+ title?: string;
843
+ titleId?: string;
844
+ desc?: string;
845
+ descId?: string;
846
+ }>;
847
+ readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
848
+ title?: string;
849
+ titleId?: string;
850
+ desc?: string;
851
+ descId?: string;
852
+ }>;
853
+ readonly poll: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
854
+ title?: string;
855
+ titleId?: string;
856
+ desc?: string;
857
+ descId?: string;
858
+ }>;
859
+ readonly post: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
860
+ title?: string;
861
+ titleId?: string;
862
+ desc?: string;
863
+ descId?: string;
864
+ }>;
865
+ readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
866
+ title?: string;
867
+ titleId?: string;
868
+ desc?: string;
869
+ descId?: string;
870
+ }>;
871
+ readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
872
+ title?: string;
873
+ titleId?: string;
874
+ desc?: string;
875
+ descId?: string;
876
+ }>;
877
+ readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
878
+ title?: string;
879
+ titleId?: string;
880
+ desc?: string;
881
+ descId?: string;
882
+ }>;
883
+ readonly question: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
884
+ title?: string;
885
+ titleId?: string;
886
+ desc?: string;
887
+ descId?: string;
888
+ }>;
889
+ readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
890
+ title?: string;
891
+ titleId?: string;
892
+ desc?: string;
893
+ descId?: string;
894
+ }>;
895
+ readonly settings_cog: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
896
+ title?: string;
897
+ titleId?: string;
898
+ desc?: string;
899
+ descId?: string;
900
+ }>;
901
+ readonly shopping_bag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
902
+ title?: string;
903
+ titleId?: string;
904
+ desc?: string;
905
+ descId?: string;
906
+ }>;
907
+ readonly shopping_cart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
908
+ title?: string;
909
+ titleId?: string;
910
+ desc?: string;
911
+ descId?: string;
912
+ }>;
913
+ readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
914
+ title?: string;
915
+ titleId?: string;
916
+ desc?: string;
917
+ descId?: string;
918
+ }>;
919
+ readonly star: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
920
+ title?: string;
921
+ titleId?: string;
922
+ desc?: string;
923
+ descId?: string;
924
+ }>;
925
+ readonly suitcase: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
926
+ title?: string;
927
+ titleId?: string;
928
+ desc?: string;
929
+ descId?: string;
930
+ }>;
931
+ readonly supporter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
932
+ title?: string;
933
+ titleId?: string;
934
+ desc?: string;
935
+ descId?: string;
936
+ }>;
937
+ readonly supporter_new: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
938
+ title?: string;
939
+ titleId?: string;
940
+ desc?: string;
941
+ descId?: string;
942
+ }>;
943
+ readonly supporter_new_colored: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
944
+ title?: string;
945
+ titleId?: string;
946
+ desc?: string;
947
+ descId?: string;
948
+ }>;
949
+ readonly supporter_white: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
950
+ title?: string;
951
+ titleId?: string;
952
+ desc?: string;
953
+ descId?: string;
954
+ }>;
955
+ readonly tennis_ball: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
956
+ title?: string;
957
+ titleId?: string;
958
+ desc?: string;
959
+ descId?: string;
960
+ }>;
961
+ readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
962
+ title?: string;
963
+ titleId?: string;
964
+ desc?: string;
965
+ descId?: string;
966
+ }>;
967
+ readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
968
+ title?: string;
969
+ titleId?: string;
970
+ desc?: string;
971
+ descId?: string;
972
+ }>;
973
+ readonly truck: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
974
+ title?: string;
975
+ titleId?: string;
976
+ desc?: string;
977
+ descId?: string;
978
+ }>;
979
+ readonly user: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
980
+ title?: string;
981
+ titleId?: string;
982
+ desc?: string;
983
+ descId?: string;
984
+ }>;
985
+ readonly user_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
986
+ title?: string;
987
+ titleId?: string;
988
+ desc?: string;
989
+ descId?: string;
990
+ }>;
991
+ readonly wellness: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
992
+ title?: string;
993
+ titleId?: string;
994
+ desc?: string;
995
+ descId?: string;
996
+ }>;
997
+ };
998
+ };
999
+ export default iconsMap;