@goodhood-web/ui 2.1.0-development.2 → 2.1.0-development.21
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.
- package/index.d.ts +5 -4
- package/index.js +126 -126
- package/index.mjs +18458 -18416
- package/lib/Atoms/Badges/Badge/Badge.types.d.ts +2 -3
- package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +1 -1
- package/lib/Atoms/Badges/BadgeLabel/BadgeLabel.types.d.ts +1 -1
- package/lib/Atoms/Badges/Tooltip/Tooltip.d.ts +1 -1
- package/lib/Atoms/Badges/Tooltip/Tooltip.types.d.ts +1 -0
- package/lib/Atoms/Buttons/Button/Button.d.ts +2 -2
- package/lib/Atoms/Buttons/Button/Button.types.d.ts +1 -1
- package/lib/Atoms/Buttons/IconButton/IconButton.d.ts +1 -1
- package/lib/Atoms/Buttons/OverlayButton/OverlayButton.d.ts +1 -1
- package/lib/Atoms/Buttons/OverlayButton/OverlayButton.types.d.ts +1 -0
- package/lib/Atoms/Content/BodyText/BodyText.d.ts +1 -1
- package/lib/Atoms/Content/BodyText/BodyText.types.d.ts +1 -0
- package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.d.ts +3 -0
- package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.types.d.ts +44 -0
- package/lib/Atoms/Content/UserAvatarCluster/utils.d.ts +42 -0
- package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.d.ts +3 -0
- package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.types.d.ts +9 -0
- package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +3 -0
- package/lib/Atoms/Dropdowns/{DropdownOption/DropdownOption.types.d.ts → DropdownItem/DropdownItem.types.d.ts} +1 -1
- package/lib/Base/Icon/Icon.types.d.ts +10 -6
- package/lib/Base/Icon/icons/coloured/32x32/index.d.ts +21 -0
- package/lib/Base/Icon/icons/coloured/index.d.ts +25 -0
- package/lib/Base/Icon/icons/filled/16x16/index.d.ts +6 -0
- package/lib/Base/Icon/icons/filled/24x24/index.d.ts +9 -0
- package/lib/Base/Icon/icons/filled/32x32/index.d.ts +12 -0
- package/lib/Base/Icon/icons/filled/index.d.ts +27 -0
- package/lib/Base/Icon/icons/index.d.ts +541 -486
- package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +0 -3
- package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +9 -6
- package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +24 -21
- package/lib/Base/Icon/icons/outline/index.d.ts +495 -0
- package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
- package/lib/Base/SocialIcon/SocialIcon.types.d.ts +20 -0
- package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +81 -0
- package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +87 -0
- package/lib/Base/SocialIcon/icons/index.d.ts +169 -0
- package/lib/Base/Typography/Typography.types.d.ts +1 -1
- package/lib/Molecules/Markdown/Markdown.d.ts +1 -1
- package/lib/Molecules/Markdown/Markdown.types.d.ts +2 -0
- package/lib/Molecules/Notices/EmptyState/EmptyState.d.ts +1 -1
- package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/_media.scss +6 -0
- package/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.d.ts +0 -3
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.d.ts +0 -3
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.types.d.ts +0 -4
- package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.d.ts +0 -2
- package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.types.d.ts +0 -12
|
@@ -11,9 +11,6 @@ declare const IconsMap: {
|
|
|
11
11
|
chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
12
|
title?: string;
|
|
13
13
|
}>;
|
|
14
|
-
heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
|
-
title?: string;
|
|
16
|
-
}>;
|
|
17
14
|
heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
15
|
title?: string;
|
|
19
16
|
}>;
|
|
@@ -5,9 +5,6 @@ declare const IconsMap: {
|
|
|
5
5
|
readonly arrow_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
6
|
title?: string;
|
|
7
7
|
}>;
|
|
8
|
-
readonly bookmark_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
-
title?: string;
|
|
10
|
-
}>;
|
|
11
8
|
readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
9
|
title?: string;
|
|
13
10
|
}>;
|
|
@@ -74,15 +71,21 @@ declare const IconsMap: {
|
|
|
74
71
|
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
72
|
title?: string;
|
|
76
73
|
}>;
|
|
77
|
-
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
78
|
-
title?: string;
|
|
79
|
-
}>;
|
|
80
74
|
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
75
|
title?: string;
|
|
82
76
|
}>;
|
|
83
77
|
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
84
78
|
title?: string;
|
|
85
79
|
}>;
|
|
80
|
+
readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
|
+
title?: string;
|
|
82
|
+
}>;
|
|
83
|
+
readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
84
|
+
title?: string;
|
|
85
|
+
}>;
|
|
86
|
+
readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
|
+
title?: string;
|
|
88
|
+
}>;
|
|
86
89
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
90
|
title?: string;
|
|
88
91
|
}>;
|
|
@@ -14,9 +14,6 @@ declare const IconsMap: {
|
|
|
14
14
|
readonly books: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
15
|
title?: string;
|
|
16
16
|
}>;
|
|
17
|
-
readonly bubble_heart_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
|
-
title?: string;
|
|
19
|
-
}>;
|
|
20
17
|
readonly bubble_heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
18
|
title?: string;
|
|
22
19
|
}>;
|
|
@@ -95,6 +92,9 @@ declare const IconsMap: {
|
|
|
95
92
|
readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
96
93
|
title?: string;
|
|
97
94
|
}>;
|
|
95
|
+
readonly envelop_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
96
|
+
title?: string;
|
|
97
|
+
}>;
|
|
98
98
|
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
99
99
|
title?: string;
|
|
100
100
|
}>;
|
|
@@ -113,9 +113,6 @@ declare const IconsMap: {
|
|
|
113
113
|
readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
114
|
title?: string;
|
|
115
115
|
}>;
|
|
116
|
-
readonly event_calendar_plus_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
|
-
title?: string;
|
|
118
|
-
}>;
|
|
119
116
|
readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
120
117
|
title?: string;
|
|
121
118
|
}>;
|
|
@@ -125,12 +122,6 @@ declare const IconsMap: {
|
|
|
125
122
|
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
126
123
|
title?: string;
|
|
127
124
|
}>;
|
|
128
|
-
readonly gift: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
129
|
-
title?: string;
|
|
130
|
-
}>;
|
|
131
|
-
readonly gift_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
132
|
-
title?: string;
|
|
133
|
-
}>;
|
|
134
125
|
readonly gift_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
135
126
|
title?: string;
|
|
136
127
|
}>;
|
|
@@ -140,21 +131,12 @@ declare const IconsMap: {
|
|
|
140
131
|
readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
141
132
|
title?: string;
|
|
142
133
|
}>;
|
|
143
|
-
readonly group_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
144
|
-
title?: string;
|
|
145
|
-
}>;
|
|
146
134
|
readonly healthcare: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
147
135
|
title?: string;
|
|
148
136
|
}>;
|
|
149
137
|
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
150
138
|
title?: string;
|
|
151
139
|
}>;
|
|
152
|
-
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
153
|
-
title?: string;
|
|
154
|
-
}>;
|
|
155
|
-
readonly heart_handshake_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
156
|
-
title?: string;
|
|
157
|
-
}>;
|
|
158
140
|
readonly heart_handshake_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
159
141
|
title?: string;
|
|
160
142
|
}>;
|
|
@@ -173,6 +155,9 @@ declare const IconsMap: {
|
|
|
173
155
|
readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
174
156
|
title?: string;
|
|
175
157
|
}>;
|
|
158
|
+
readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
159
|
+
title?: string;
|
|
160
|
+
}>;
|
|
176
161
|
readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
177
162
|
title?: string;
|
|
178
163
|
}>;
|
|
@@ -182,6 +167,9 @@ declare const IconsMap: {
|
|
|
182
167
|
readonly kitchen_pot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
183
168
|
title?: string;
|
|
184
169
|
}>;
|
|
170
|
+
readonly link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
171
|
+
title?: string;
|
|
172
|
+
}>;
|
|
185
173
|
readonly list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
186
174
|
title?: string;
|
|
187
175
|
}>;
|
|
@@ -242,6 +230,12 @@ declare const IconsMap: {
|
|
|
242
230
|
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
243
231
|
title?: string;
|
|
244
232
|
}>;
|
|
233
|
+
readonly pencil_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
234
|
+
title?: string;
|
|
235
|
+
}>;
|
|
236
|
+
readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
237
|
+
title?: string;
|
|
238
|
+
}>;
|
|
245
239
|
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
246
240
|
title?: string;
|
|
247
241
|
}>;
|
|
@@ -257,6 +251,9 @@ declare const IconsMap: {
|
|
|
257
251
|
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
258
252
|
title?: string;
|
|
259
253
|
}>;
|
|
254
|
+
readonly poll: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
255
|
+
title?: string;
|
|
256
|
+
}>;
|
|
260
257
|
readonly post: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
261
258
|
title?: string;
|
|
262
259
|
}>;
|
|
@@ -269,6 +266,9 @@ declare const IconsMap: {
|
|
|
269
266
|
readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
270
267
|
title?: string;
|
|
271
268
|
}>;
|
|
269
|
+
readonly question: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
270
|
+
title?: string;
|
|
271
|
+
}>;
|
|
272
272
|
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
273
273
|
title?: string;
|
|
274
274
|
}>;
|
|
@@ -293,6 +293,9 @@ declare const IconsMap: {
|
|
|
293
293
|
readonly supporter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
294
294
|
title?: string;
|
|
295
295
|
}>;
|
|
296
|
+
readonly supporter_new: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
297
|
+
title?: string;
|
|
298
|
+
}>;
|
|
296
299
|
readonly tennis_ball: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
297
300
|
title?: string;
|
|
298
301
|
}>;
|
|
@@ -0,0 +1,495 @@
|
|
|
1
|
+
declare const iconsMap: {
|
|
2
|
+
'16': {
|
|
3
|
+
chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
4
|
+
title?: string;
|
|
5
|
+
}>;
|
|
6
|
+
chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
7
|
+
title?: string;
|
|
8
|
+
}>;
|
|
9
|
+
chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
10
|
+
title?: string;
|
|
11
|
+
}>;
|
|
12
|
+
chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
13
|
+
title?: string;
|
|
14
|
+
}>;
|
|
15
|
+
heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
16
|
+
title?: string;
|
|
17
|
+
}>;
|
|
18
|
+
privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
19
|
+
title?: string;
|
|
20
|
+
}>;
|
|
21
|
+
};
|
|
22
|
+
'24': {
|
|
23
|
+
readonly arrow_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
24
|
+
title?: string;
|
|
25
|
+
}>;
|
|
26
|
+
readonly arrow_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
|
+
title?: string;
|
|
28
|
+
}>;
|
|
29
|
+
readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
30
|
+
title?: string;
|
|
31
|
+
}>;
|
|
32
|
+
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
|
+
title?: string;
|
|
34
|
+
}>;
|
|
35
|
+
readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
36
|
+
title?: string;
|
|
37
|
+
}>;
|
|
38
|
+
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
39
|
+
title?: string;
|
|
40
|
+
}>;
|
|
41
|
+
readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
42
|
+
title?: string;
|
|
43
|
+
}>;
|
|
44
|
+
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
45
|
+
title?: string;
|
|
46
|
+
}>;
|
|
47
|
+
readonly chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
48
|
+
title?: string;
|
|
49
|
+
}>;
|
|
50
|
+
readonly chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
51
|
+
title?: string;
|
|
52
|
+
}>;
|
|
53
|
+
readonly chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
54
|
+
title?: string;
|
|
55
|
+
}>;
|
|
56
|
+
readonly chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
57
|
+
title?: string;
|
|
58
|
+
}>;
|
|
59
|
+
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
60
|
+
title?: string;
|
|
61
|
+
}>;
|
|
62
|
+
readonly copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
63
|
+
title?: string;
|
|
64
|
+
}>;
|
|
65
|
+
readonly cross: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
66
|
+
title?: string;
|
|
67
|
+
}>;
|
|
68
|
+
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
69
|
+
title?: string;
|
|
70
|
+
}>;
|
|
71
|
+
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
72
|
+
title?: string;
|
|
73
|
+
}>;
|
|
74
|
+
readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
|
+
title?: string;
|
|
76
|
+
}>;
|
|
77
|
+
readonly external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
78
|
+
title?: string;
|
|
79
|
+
}>;
|
|
80
|
+
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
|
+
title?: string;
|
|
82
|
+
}>;
|
|
83
|
+
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
84
|
+
title?: string;
|
|
85
|
+
}>;
|
|
86
|
+
readonly filter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
|
+
title?: string;
|
|
88
|
+
}>;
|
|
89
|
+
readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
90
|
+
title?: string;
|
|
91
|
+
}>;
|
|
92
|
+
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
93
|
+
title?: string;
|
|
94
|
+
}>;
|
|
95
|
+
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
96
|
+
title?: string;
|
|
97
|
+
}>;
|
|
98
|
+
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
99
|
+
title?: string;
|
|
100
|
+
}>;
|
|
101
|
+
readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
102
|
+
title?: string;
|
|
103
|
+
}>;
|
|
104
|
+
readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
105
|
+
title?: string;
|
|
106
|
+
}>;
|
|
107
|
+
readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
108
|
+
title?: string;
|
|
109
|
+
}>;
|
|
110
|
+
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
|
+
title?: string;
|
|
112
|
+
}>;
|
|
113
|
+
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
|
+
title?: string;
|
|
115
|
+
}>;
|
|
116
|
+
readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
|
+
title?: string;
|
|
118
|
+
}>;
|
|
119
|
+
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
120
|
+
title?: string;
|
|
121
|
+
}>;
|
|
122
|
+
readonly mute: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
|
+
title?: string;
|
|
124
|
+
}>;
|
|
125
|
+
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
126
|
+
title?: string;
|
|
127
|
+
}>;
|
|
128
|
+
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
129
|
+
title?: string;
|
|
130
|
+
}>;
|
|
131
|
+
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
132
|
+
title?: string;
|
|
133
|
+
}>;
|
|
134
|
+
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
135
|
+
title?: string;
|
|
136
|
+
}>;
|
|
137
|
+
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
138
|
+
title?: string;
|
|
139
|
+
}>;
|
|
140
|
+
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
141
|
+
title?: string;
|
|
142
|
+
}>;
|
|
143
|
+
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
144
|
+
title?: string;
|
|
145
|
+
}>;
|
|
146
|
+
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
147
|
+
title?: string;
|
|
148
|
+
}>;
|
|
149
|
+
readonly react: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
150
|
+
title?: string;
|
|
151
|
+
}>;
|
|
152
|
+
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
153
|
+
title?: string;
|
|
154
|
+
}>;
|
|
155
|
+
readonly share_arrow: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
156
|
+
title?: string;
|
|
157
|
+
}>;
|
|
158
|
+
readonly share_arrow_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
159
|
+
title?: string;
|
|
160
|
+
}>;
|
|
161
|
+
readonly sort: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
162
|
+
title?: string;
|
|
163
|
+
}>;
|
|
164
|
+
readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
165
|
+
title?: string;
|
|
166
|
+
}>;
|
|
167
|
+
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
168
|
+
title?: string;
|
|
169
|
+
}>;
|
|
170
|
+
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
171
|
+
title?: string;
|
|
172
|
+
}>;
|
|
173
|
+
};
|
|
174
|
+
'32': {
|
|
175
|
+
readonly address_book: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
176
|
+
title?: string;
|
|
177
|
+
}>;
|
|
178
|
+
readonly baby_toy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
179
|
+
title?: string;
|
|
180
|
+
}>;
|
|
181
|
+
readonly bicycle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
182
|
+
title?: string;
|
|
183
|
+
}>;
|
|
184
|
+
readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
185
|
+
title?: string;
|
|
186
|
+
}>;
|
|
187
|
+
readonly books: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
188
|
+
title?: string;
|
|
189
|
+
}>;
|
|
190
|
+
readonly bubble_heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
191
|
+
title?: string;
|
|
192
|
+
}>;
|
|
193
|
+
readonly buildings: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
194
|
+
title?: string;
|
|
195
|
+
}>;
|
|
196
|
+
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
197
|
+
title?: string;
|
|
198
|
+
}>;
|
|
199
|
+
readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
200
|
+
title?: string;
|
|
201
|
+
}>;
|
|
202
|
+
readonly business_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
203
|
+
title?: string;
|
|
204
|
+
}>;
|
|
205
|
+
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
206
|
+
title?: string;
|
|
207
|
+
}>;
|
|
208
|
+
readonly camera_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
209
|
+
title?: string;
|
|
210
|
+
}>;
|
|
211
|
+
readonly car: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
212
|
+
title?: string;
|
|
213
|
+
}>;
|
|
214
|
+
readonly carrot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
215
|
+
title?: string;
|
|
216
|
+
}>;
|
|
217
|
+
readonly chat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
218
|
+
title?: string;
|
|
219
|
+
}>;
|
|
220
|
+
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
221
|
+
title?: string;
|
|
222
|
+
}>;
|
|
223
|
+
readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
224
|
+
title?: string;
|
|
225
|
+
}>;
|
|
226
|
+
readonly clipboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
227
|
+
title?: string;
|
|
228
|
+
}>;
|
|
229
|
+
readonly clothing: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
230
|
+
title?: string;
|
|
231
|
+
}>;
|
|
232
|
+
readonly cocktail: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
233
|
+
title?: string;
|
|
234
|
+
}>;
|
|
235
|
+
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
236
|
+
title?: string;
|
|
237
|
+
}>;
|
|
238
|
+
readonly compass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
239
|
+
title?: string;
|
|
240
|
+
}>;
|
|
241
|
+
readonly computer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
242
|
+
title?: string;
|
|
243
|
+
}>;
|
|
244
|
+
readonly confetti: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
245
|
+
title?: string;
|
|
246
|
+
}>;
|
|
247
|
+
readonly copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
248
|
+
title?: string;
|
|
249
|
+
}>;
|
|
250
|
+
readonly couch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
251
|
+
title?: string;
|
|
252
|
+
}>;
|
|
253
|
+
readonly credit_card: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
254
|
+
title?: string;
|
|
255
|
+
}>;
|
|
256
|
+
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
257
|
+
title?: string;
|
|
258
|
+
}>;
|
|
259
|
+
readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
260
|
+
title?: string;
|
|
261
|
+
}>;
|
|
262
|
+
readonly drill_tool: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
263
|
+
title?: string;
|
|
264
|
+
}>;
|
|
265
|
+
readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
266
|
+
title?: string;
|
|
267
|
+
}>;
|
|
268
|
+
readonly envelop_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
269
|
+
title?: string;
|
|
270
|
+
}>;
|
|
271
|
+
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
272
|
+
title?: string;
|
|
273
|
+
}>;
|
|
274
|
+
readonly error: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
275
|
+
title?: string;
|
|
276
|
+
}>;
|
|
277
|
+
readonly event_calendar_check: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
278
|
+
title?: string;
|
|
279
|
+
}>;
|
|
280
|
+
readonly event_calendar_date: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
281
|
+
title?: string;
|
|
282
|
+
}>;
|
|
283
|
+
readonly event_calendar_grid: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
284
|
+
title?: string;
|
|
285
|
+
}>;
|
|
286
|
+
readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
287
|
+
title?: string;
|
|
288
|
+
}>;
|
|
289
|
+
readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
290
|
+
title?: string;
|
|
291
|
+
}>;
|
|
292
|
+
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
293
|
+
title?: string;
|
|
294
|
+
}>;
|
|
295
|
+
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
296
|
+
title?: string;
|
|
297
|
+
}>;
|
|
298
|
+
readonly gift_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
299
|
+
title?: string;
|
|
300
|
+
}>;
|
|
301
|
+
readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
302
|
+
title?: string;
|
|
303
|
+
}>;
|
|
304
|
+
readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
305
|
+
title?: string;
|
|
306
|
+
}>;
|
|
307
|
+
readonly healthcare: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
308
|
+
title?: string;
|
|
309
|
+
}>;
|
|
310
|
+
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
311
|
+
title?: string;
|
|
312
|
+
}>;
|
|
313
|
+
readonly heart_handshake_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
314
|
+
title?: string;
|
|
315
|
+
}>;
|
|
316
|
+
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
317
|
+
title?: string;
|
|
318
|
+
}>;
|
|
319
|
+
readonly house: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
320
|
+
title?: string;
|
|
321
|
+
}>;
|
|
322
|
+
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
323
|
+
title?: string;
|
|
324
|
+
}>;
|
|
325
|
+
readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
326
|
+
title?: string;
|
|
327
|
+
}>;
|
|
328
|
+
readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
329
|
+
title?: string;
|
|
330
|
+
}>;
|
|
331
|
+
readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
332
|
+
title?: string;
|
|
333
|
+
}>;
|
|
334
|
+
readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
335
|
+
title?: string;
|
|
336
|
+
}>;
|
|
337
|
+
readonly key: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
338
|
+
title?: string;
|
|
339
|
+
}>;
|
|
340
|
+
readonly kitchen_pot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
341
|
+
title?: string;
|
|
342
|
+
}>;
|
|
343
|
+
readonly link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
344
|
+
title?: string;
|
|
345
|
+
}>;
|
|
346
|
+
readonly list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
347
|
+
title?: string;
|
|
348
|
+
}>;
|
|
349
|
+
readonly log_in: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
350
|
+
title?: string;
|
|
351
|
+
}>;
|
|
352
|
+
readonly log_out: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
353
|
+
title?: string;
|
|
354
|
+
}>;
|
|
355
|
+
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
356
|
+
title?: string;
|
|
357
|
+
}>;
|
|
358
|
+
readonly map: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
359
|
+
title?: string;
|
|
360
|
+
}>;
|
|
361
|
+
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
362
|
+
title?: string;
|
|
363
|
+
}>;
|
|
364
|
+
readonly miscellaneous_other: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
365
|
+
title?: string;
|
|
366
|
+
}>;
|
|
367
|
+
readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
368
|
+
title?: string;
|
|
369
|
+
}>;
|
|
370
|
+
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
371
|
+
title?: string;
|
|
372
|
+
}>;
|
|
373
|
+
readonly more_dots_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
374
|
+
title?: string;
|
|
375
|
+
}>;
|
|
376
|
+
readonly music: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
377
|
+
title?: string;
|
|
378
|
+
}>;
|
|
379
|
+
readonly nebenan_de: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
380
|
+
title?: string;
|
|
381
|
+
}>;
|
|
382
|
+
readonly neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
383
|
+
title?: string;
|
|
384
|
+
}>;
|
|
385
|
+
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
386
|
+
title?: string;
|
|
387
|
+
}>;
|
|
388
|
+
readonly organisation: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
389
|
+
title?: string;
|
|
390
|
+
}>;
|
|
391
|
+
readonly paper_empty: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
392
|
+
title?: string;
|
|
393
|
+
}>;
|
|
394
|
+
readonly paper_form: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
395
|
+
title?: string;
|
|
396
|
+
}>;
|
|
397
|
+
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
398
|
+
title?: string;
|
|
399
|
+
}>;
|
|
400
|
+
readonly paw: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
401
|
+
title?: string;
|
|
402
|
+
}>;
|
|
403
|
+
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
404
|
+
title?: string;
|
|
405
|
+
}>;
|
|
406
|
+
readonly pencil_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
407
|
+
title?: string;
|
|
408
|
+
}>;
|
|
409
|
+
readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
410
|
+
title?: string;
|
|
411
|
+
}>;
|
|
412
|
+
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
413
|
+
title?: string;
|
|
414
|
+
}>;
|
|
415
|
+
readonly pins: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
416
|
+
title?: string;
|
|
417
|
+
}>;
|
|
418
|
+
readonly plant: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
419
|
+
title?: string;
|
|
420
|
+
}>;
|
|
421
|
+
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
422
|
+
title?: string;
|
|
423
|
+
}>;
|
|
424
|
+
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
425
|
+
title?: string;
|
|
426
|
+
}>;
|
|
427
|
+
readonly poll: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
428
|
+
title?: string;
|
|
429
|
+
}>;
|
|
430
|
+
readonly post: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
431
|
+
title?: string;
|
|
432
|
+
}>;
|
|
433
|
+
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
434
|
+
title?: string;
|
|
435
|
+
}>;
|
|
436
|
+
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
437
|
+
title?: string;
|
|
438
|
+
}>;
|
|
439
|
+
readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
440
|
+
title?: string;
|
|
441
|
+
}>;
|
|
442
|
+
readonly question: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
443
|
+
title?: string;
|
|
444
|
+
}>;
|
|
445
|
+
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
446
|
+
title?: string;
|
|
447
|
+
}>;
|
|
448
|
+
readonly settings_cog: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
449
|
+
title?: string;
|
|
450
|
+
}>;
|
|
451
|
+
readonly shopping_bag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
452
|
+
title?: string;
|
|
453
|
+
}>;
|
|
454
|
+
readonly shopping_cart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
455
|
+
title?: string;
|
|
456
|
+
}>;
|
|
457
|
+
readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
458
|
+
title?: string;
|
|
459
|
+
}>;
|
|
460
|
+
readonly star: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
461
|
+
title?: string;
|
|
462
|
+
}>;
|
|
463
|
+
readonly suitcase: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
464
|
+
title?: string;
|
|
465
|
+
}>;
|
|
466
|
+
readonly supporter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
467
|
+
title?: string;
|
|
468
|
+
}>;
|
|
469
|
+
readonly supporter_new: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
470
|
+
title?: string;
|
|
471
|
+
}>;
|
|
472
|
+
readonly tennis_ball: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
473
|
+
title?: string;
|
|
474
|
+
}>;
|
|
475
|
+
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
476
|
+
title?: string;
|
|
477
|
+
}>;
|
|
478
|
+
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
479
|
+
title?: string;
|
|
480
|
+
}>;
|
|
481
|
+
readonly truck: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
482
|
+
title?: string;
|
|
483
|
+
}>;
|
|
484
|
+
readonly user: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
485
|
+
title?: string;
|
|
486
|
+
}>;
|
|
487
|
+
readonly user_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
488
|
+
title?: string;
|
|
489
|
+
}>;
|
|
490
|
+
readonly wellness: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
491
|
+
title?: string;
|
|
492
|
+
}>;
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
export default iconsMap;
|