@goodhood-web/ui 2.1.0-development.9 → 3.0.0-development.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.
- package/index.d.ts +9 -5
- package/index.js +125 -125
- package/index.mjs +18638 -18493
- package/lib/Atoms/Badges/Badge/Badge.types.d.ts +2 -3
- package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +2 -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.types.d.ts +1 -1
- package/lib/Atoms/Buttons/ButtonTertiary/ButtonTertiary.types.d.ts +1 -1
- package/lib/Atoms/Buttons/IconButton/IconButton.types.d.ts +1 -1
- 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 +42 -0
- package/lib/Atoms/Content/UserAvatarCluster/utils.d.ts +41 -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 +39 -0
- package/lib/Base/Icon/icons/coloured/index.d.ts +43 -0
- package/lib/Base/Icon/icons/filled/16x16/index.d.ts +9 -0
- package/lib/Base/Icon/icons/filled/24x24/index.d.ts +15 -0
- package/lib/Base/Icon/icons/filled/32x32/index.d.ts +21 -0
- package/lib/Base/Icon/icons/filled/index.d.ts +45 -0
- package/lib/Base/Icon/icons/index.d.ts +1081 -516
- package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +18 -3
- package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +159 -6
- package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +336 -27
- package/lib/Base/Icon/icons/outline/index.d.ts +999 -0
- package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
- package/lib/Base/SocialIcon/SocialIcon.types.d.ts +22 -0
- package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +159 -0
- package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +171 -0
- package/lib/Base/SocialIcon/icons/index.d.ts +331 -0
- package/lib/Base/Typography/Typography.types.d.ts +2 -1
- package/lib/Base/Typography/index.d.ts +3 -0
- package/lib/Molecules/ListItemCluster/ListItemCluster.d.ts +3 -0
- package/lib/Molecules/ListItemCluster/ListItemCluster.types.d.ts +4 -0
- package/lib/Molecules/ListItems/ListItem.d.ts +3 -0
- package/lib/Molecules/ListItems/ListItem.types.d.ts +9 -0
- package/lib/Molecules/ListItems/Neighbour/Neighbour.d.ts +3 -0
- package/lib/Molecules/ListItems/Neighbour/Neighbour.types.d.ts +22 -0
- 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/lib/Organisms/Modals/Modal/Modal.d.ts +1 -1
- package/lib/Organisms/Modals/Modal/Modal.types.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/_media.scss +1 -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
|
@@ -1,348 +1,657 @@
|
|
|
1
1
|
declare const IconsMap: {
|
|
2
2
|
readonly address_book: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
3
|
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
desc?: string;
|
|
6
|
+
descId?: string;
|
|
4
7
|
}>;
|
|
5
8
|
readonly baby_toy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
9
|
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
7
13
|
}>;
|
|
8
14
|
readonly bicycle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
15
|
title?: string;
|
|
16
|
+
titleId?: string;
|
|
17
|
+
desc?: string;
|
|
18
|
+
descId?: string;
|
|
10
19
|
}>;
|
|
11
20
|
readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
21
|
title?: string;
|
|
22
|
+
titleId?: string;
|
|
23
|
+
desc?: string;
|
|
24
|
+
descId?: string;
|
|
13
25
|
}>;
|
|
14
26
|
readonly books: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
27
|
title?: string;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
28
|
+
titleId?: string;
|
|
29
|
+
desc?: string;
|
|
30
|
+
descId?: string;
|
|
19
31
|
}>;
|
|
20
32
|
readonly bubble_heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
33
|
title?: string;
|
|
34
|
+
titleId?: string;
|
|
35
|
+
desc?: string;
|
|
36
|
+
descId?: string;
|
|
22
37
|
}>;
|
|
23
38
|
readonly buildings: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
24
39
|
title?: string;
|
|
40
|
+
titleId?: string;
|
|
41
|
+
desc?: string;
|
|
42
|
+
descId?: string;
|
|
25
43
|
}>;
|
|
26
44
|
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
45
|
title?: string;
|
|
46
|
+
titleId?: string;
|
|
47
|
+
desc?: string;
|
|
48
|
+
descId?: string;
|
|
28
49
|
}>;
|
|
29
50
|
readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
30
51
|
title?: string;
|
|
52
|
+
titleId?: string;
|
|
53
|
+
desc?: string;
|
|
54
|
+
descId?: string;
|
|
31
55
|
}>;
|
|
32
56
|
readonly business_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
57
|
title?: string;
|
|
58
|
+
titleId?: string;
|
|
59
|
+
desc?: string;
|
|
60
|
+
descId?: string;
|
|
34
61
|
}>;
|
|
35
62
|
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
36
63
|
title?: string;
|
|
64
|
+
titleId?: string;
|
|
65
|
+
desc?: string;
|
|
66
|
+
descId?: string;
|
|
37
67
|
}>;
|
|
38
68
|
readonly camera_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
39
69
|
title?: string;
|
|
70
|
+
titleId?: string;
|
|
71
|
+
desc?: string;
|
|
72
|
+
descId?: string;
|
|
40
73
|
}>;
|
|
41
74
|
readonly car: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
42
75
|
title?: string;
|
|
76
|
+
titleId?: string;
|
|
77
|
+
desc?: string;
|
|
78
|
+
descId?: string;
|
|
43
79
|
}>;
|
|
44
80
|
readonly carrot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
45
81
|
title?: string;
|
|
82
|
+
titleId?: string;
|
|
83
|
+
desc?: string;
|
|
84
|
+
descId?: string;
|
|
46
85
|
}>;
|
|
47
86
|
readonly chat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
48
87
|
title?: string;
|
|
88
|
+
titleId?: string;
|
|
89
|
+
desc?: string;
|
|
90
|
+
descId?: string;
|
|
49
91
|
}>;
|
|
50
92
|
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
51
93
|
title?: string;
|
|
94
|
+
titleId?: string;
|
|
95
|
+
desc?: string;
|
|
96
|
+
descId?: string;
|
|
52
97
|
}>;
|
|
53
98
|
readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
54
99
|
title?: string;
|
|
100
|
+
titleId?: string;
|
|
101
|
+
desc?: string;
|
|
102
|
+
descId?: string;
|
|
55
103
|
}>;
|
|
56
104
|
readonly clipboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
57
105
|
title?: string;
|
|
106
|
+
titleId?: string;
|
|
107
|
+
desc?: string;
|
|
108
|
+
descId?: string;
|
|
58
109
|
}>;
|
|
59
110
|
readonly clothing: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
60
111
|
title?: string;
|
|
112
|
+
titleId?: string;
|
|
113
|
+
desc?: string;
|
|
114
|
+
descId?: string;
|
|
61
115
|
}>;
|
|
62
116
|
readonly cocktail: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
63
117
|
title?: string;
|
|
118
|
+
titleId?: string;
|
|
119
|
+
desc?: string;
|
|
120
|
+
descId?: string;
|
|
64
121
|
}>;
|
|
65
122
|
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
66
123
|
title?: string;
|
|
124
|
+
titleId?: string;
|
|
125
|
+
desc?: string;
|
|
126
|
+
descId?: string;
|
|
67
127
|
}>;
|
|
68
128
|
readonly compass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
69
129
|
title?: string;
|
|
130
|
+
titleId?: string;
|
|
131
|
+
desc?: string;
|
|
132
|
+
descId?: string;
|
|
70
133
|
}>;
|
|
71
134
|
readonly computer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
72
135
|
title?: string;
|
|
136
|
+
titleId?: string;
|
|
137
|
+
desc?: string;
|
|
138
|
+
descId?: string;
|
|
73
139
|
}>;
|
|
74
140
|
readonly confetti: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
141
|
title?: string;
|
|
142
|
+
titleId?: string;
|
|
143
|
+
desc?: string;
|
|
144
|
+
descId?: string;
|
|
76
145
|
}>;
|
|
77
146
|
readonly copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
78
147
|
title?: string;
|
|
148
|
+
titleId?: string;
|
|
149
|
+
desc?: string;
|
|
150
|
+
descId?: string;
|
|
79
151
|
}>;
|
|
80
152
|
readonly couch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
153
|
title?: string;
|
|
154
|
+
titleId?: string;
|
|
155
|
+
desc?: string;
|
|
156
|
+
descId?: string;
|
|
82
157
|
}>;
|
|
83
158
|
readonly credit_card: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
84
159
|
title?: string;
|
|
160
|
+
titleId?: string;
|
|
161
|
+
desc?: string;
|
|
162
|
+
descId?: string;
|
|
85
163
|
}>;
|
|
86
164
|
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
165
|
title?: string;
|
|
166
|
+
titleId?: string;
|
|
167
|
+
desc?: string;
|
|
168
|
+
descId?: string;
|
|
88
169
|
}>;
|
|
89
170
|
readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
90
171
|
title?: string;
|
|
172
|
+
titleId?: string;
|
|
173
|
+
desc?: string;
|
|
174
|
+
descId?: string;
|
|
91
175
|
}>;
|
|
92
176
|
readonly drill_tool: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
93
177
|
title?: string;
|
|
178
|
+
titleId?: string;
|
|
179
|
+
desc?: string;
|
|
180
|
+
descId?: string;
|
|
94
181
|
}>;
|
|
95
182
|
readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
96
183
|
title?: string;
|
|
184
|
+
titleId?: string;
|
|
185
|
+
desc?: string;
|
|
186
|
+
descId?: string;
|
|
97
187
|
}>;
|
|
98
188
|
readonly envelop_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
99
189
|
title?: string;
|
|
190
|
+
titleId?: string;
|
|
191
|
+
desc?: string;
|
|
192
|
+
descId?: string;
|
|
100
193
|
}>;
|
|
101
194
|
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
102
195
|
title?: string;
|
|
196
|
+
titleId?: string;
|
|
197
|
+
desc?: string;
|
|
198
|
+
descId?: string;
|
|
103
199
|
}>;
|
|
104
200
|
readonly error: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
105
201
|
title?: string;
|
|
202
|
+
titleId?: string;
|
|
203
|
+
desc?: string;
|
|
204
|
+
descId?: string;
|
|
205
|
+
}>;
|
|
206
|
+
readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
207
|
+
title?: string;
|
|
208
|
+
titleId?: string;
|
|
209
|
+
desc?: string;
|
|
210
|
+
descId?: string;
|
|
106
211
|
}>;
|
|
107
212
|
readonly event_calendar_check: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
108
213
|
title?: string;
|
|
214
|
+
titleId?: string;
|
|
215
|
+
desc?: string;
|
|
216
|
+
descId?: string;
|
|
109
217
|
}>;
|
|
110
218
|
readonly event_calendar_date: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
219
|
title?: string;
|
|
220
|
+
titleId?: string;
|
|
221
|
+
desc?: string;
|
|
222
|
+
descId?: string;
|
|
112
223
|
}>;
|
|
113
224
|
readonly event_calendar_grid: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
225
|
title?: string;
|
|
226
|
+
titleId?: string;
|
|
227
|
+
desc?: string;
|
|
228
|
+
descId?: string;
|
|
115
229
|
}>;
|
|
116
230
|
readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
231
|
title?: string;
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
232
|
+
titleId?: string;
|
|
233
|
+
desc?: string;
|
|
234
|
+
descId?: string;
|
|
121
235
|
}>;
|
|
122
236
|
readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
237
|
title?: string;
|
|
238
|
+
titleId?: string;
|
|
239
|
+
desc?: string;
|
|
240
|
+
descId?: string;
|
|
124
241
|
}>;
|
|
125
242
|
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
126
243
|
title?: string;
|
|
244
|
+
titleId?: string;
|
|
245
|
+
desc?: string;
|
|
246
|
+
descId?: string;
|
|
127
247
|
}>;
|
|
128
248
|
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
129
249
|
title?: string;
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
}>;
|
|
134
|
-
readonly gift_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
135
|
-
title?: string;
|
|
250
|
+
titleId?: string;
|
|
251
|
+
desc?: string;
|
|
252
|
+
descId?: string;
|
|
136
253
|
}>;
|
|
137
254
|
readonly gift_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
138
255
|
title?: string;
|
|
256
|
+
titleId?: string;
|
|
257
|
+
desc?: string;
|
|
258
|
+
descId?: string;
|
|
139
259
|
}>;
|
|
140
260
|
readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
141
261
|
title?: string;
|
|
262
|
+
titleId?: string;
|
|
263
|
+
desc?: string;
|
|
264
|
+
descId?: string;
|
|
142
265
|
}>;
|
|
143
266
|
readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
144
267
|
title?: string;
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
268
|
+
titleId?: string;
|
|
269
|
+
desc?: string;
|
|
270
|
+
descId?: string;
|
|
148
271
|
}>;
|
|
149
272
|
readonly healthcare: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
150
273
|
title?: string;
|
|
274
|
+
titleId?: string;
|
|
275
|
+
desc?: string;
|
|
276
|
+
descId?: string;
|
|
151
277
|
}>;
|
|
152
278
|
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
153
279
|
title?: string;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}>;
|
|
158
|
-
readonly heart_handshake_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
159
|
-
title?: string;
|
|
280
|
+
titleId?: string;
|
|
281
|
+
desc?: string;
|
|
282
|
+
descId?: string;
|
|
160
283
|
}>;
|
|
161
284
|
readonly heart_handshake_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
162
285
|
title?: string;
|
|
286
|
+
titleId?: string;
|
|
287
|
+
desc?: string;
|
|
288
|
+
descId?: string;
|
|
163
289
|
}>;
|
|
164
290
|
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
165
291
|
title?: string;
|
|
292
|
+
titleId?: string;
|
|
293
|
+
desc?: string;
|
|
294
|
+
descId?: string;
|
|
166
295
|
}>;
|
|
167
296
|
readonly house: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
168
297
|
title?: string;
|
|
298
|
+
titleId?: string;
|
|
299
|
+
desc?: string;
|
|
300
|
+
descId?: string;
|
|
169
301
|
}>;
|
|
170
302
|
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
171
303
|
title?: string;
|
|
304
|
+
titleId?: string;
|
|
305
|
+
desc?: string;
|
|
306
|
+
descId?: string;
|
|
172
307
|
}>;
|
|
173
308
|
readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
174
309
|
title?: string;
|
|
310
|
+
titleId?: string;
|
|
311
|
+
desc?: string;
|
|
312
|
+
descId?: string;
|
|
175
313
|
}>;
|
|
176
314
|
readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
177
315
|
title?: string;
|
|
316
|
+
titleId?: string;
|
|
317
|
+
desc?: string;
|
|
318
|
+
descId?: string;
|
|
319
|
+
}>;
|
|
320
|
+
readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
321
|
+
title?: string;
|
|
322
|
+
titleId?: string;
|
|
323
|
+
desc?: string;
|
|
324
|
+
descId?: string;
|
|
178
325
|
}>;
|
|
179
326
|
readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
180
327
|
title?: string;
|
|
328
|
+
titleId?: string;
|
|
329
|
+
desc?: string;
|
|
330
|
+
descId?: string;
|
|
181
331
|
}>;
|
|
182
332
|
readonly key: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
183
333
|
title?: string;
|
|
334
|
+
titleId?: string;
|
|
335
|
+
desc?: string;
|
|
336
|
+
descId?: string;
|
|
184
337
|
}>;
|
|
185
338
|
readonly kitchen_pot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
186
339
|
title?: string;
|
|
340
|
+
titleId?: string;
|
|
341
|
+
desc?: string;
|
|
342
|
+
descId?: string;
|
|
187
343
|
}>;
|
|
188
344
|
readonly link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
189
345
|
title?: string;
|
|
346
|
+
titleId?: string;
|
|
347
|
+
desc?: string;
|
|
348
|
+
descId?: string;
|
|
190
349
|
}>;
|
|
191
350
|
readonly list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
192
351
|
title?: string;
|
|
352
|
+
titleId?: string;
|
|
353
|
+
desc?: string;
|
|
354
|
+
descId?: string;
|
|
193
355
|
}>;
|
|
194
356
|
readonly log_in: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
195
357
|
title?: string;
|
|
358
|
+
titleId?: string;
|
|
359
|
+
desc?: string;
|
|
360
|
+
descId?: string;
|
|
196
361
|
}>;
|
|
197
362
|
readonly log_out: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
198
363
|
title?: string;
|
|
364
|
+
titleId?: string;
|
|
365
|
+
desc?: string;
|
|
366
|
+
descId?: string;
|
|
199
367
|
}>;
|
|
200
368
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
201
369
|
title?: string;
|
|
370
|
+
titleId?: string;
|
|
371
|
+
desc?: string;
|
|
372
|
+
descId?: string;
|
|
202
373
|
}>;
|
|
203
374
|
readonly map: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
204
375
|
title?: string;
|
|
376
|
+
titleId?: string;
|
|
377
|
+
desc?: string;
|
|
378
|
+
descId?: string;
|
|
205
379
|
}>;
|
|
206
380
|
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
207
381
|
title?: string;
|
|
382
|
+
titleId?: string;
|
|
383
|
+
desc?: string;
|
|
384
|
+
descId?: string;
|
|
208
385
|
}>;
|
|
209
386
|
readonly miscellaneous_other: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
210
387
|
title?: string;
|
|
388
|
+
titleId?: string;
|
|
389
|
+
desc?: string;
|
|
390
|
+
descId?: string;
|
|
211
391
|
}>;
|
|
212
392
|
readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
213
393
|
title?: string;
|
|
394
|
+
titleId?: string;
|
|
395
|
+
desc?: string;
|
|
396
|
+
descId?: string;
|
|
214
397
|
}>;
|
|
215
398
|
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
216
399
|
title?: string;
|
|
400
|
+
titleId?: string;
|
|
401
|
+
desc?: string;
|
|
402
|
+
descId?: string;
|
|
217
403
|
}>;
|
|
218
404
|
readonly more_dots_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
219
405
|
title?: string;
|
|
406
|
+
titleId?: string;
|
|
407
|
+
desc?: string;
|
|
408
|
+
descId?: string;
|
|
220
409
|
}>;
|
|
221
410
|
readonly music: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
222
411
|
title?: string;
|
|
412
|
+
titleId?: string;
|
|
413
|
+
desc?: string;
|
|
414
|
+
descId?: string;
|
|
223
415
|
}>;
|
|
224
416
|
readonly nebenan_de: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
225
417
|
title?: string;
|
|
418
|
+
titleId?: string;
|
|
419
|
+
desc?: string;
|
|
420
|
+
descId?: string;
|
|
226
421
|
}>;
|
|
227
422
|
readonly neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
228
423
|
title?: string;
|
|
424
|
+
titleId?: string;
|
|
425
|
+
desc?: string;
|
|
426
|
+
descId?: string;
|
|
229
427
|
}>;
|
|
230
428
|
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
231
429
|
title?: string;
|
|
430
|
+
titleId?: string;
|
|
431
|
+
desc?: string;
|
|
432
|
+
descId?: string;
|
|
232
433
|
}>;
|
|
233
434
|
readonly organisation: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
234
435
|
title?: string;
|
|
436
|
+
titleId?: string;
|
|
437
|
+
desc?: string;
|
|
438
|
+
descId?: string;
|
|
235
439
|
}>;
|
|
236
440
|
readonly paper_empty: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
237
441
|
title?: string;
|
|
442
|
+
titleId?: string;
|
|
443
|
+
desc?: string;
|
|
444
|
+
descId?: string;
|
|
238
445
|
}>;
|
|
239
446
|
readonly paper_form: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
240
447
|
title?: string;
|
|
448
|
+
titleId?: string;
|
|
449
|
+
desc?: string;
|
|
450
|
+
descId?: string;
|
|
241
451
|
}>;
|
|
242
452
|
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
243
453
|
title?: string;
|
|
454
|
+
titleId?: string;
|
|
455
|
+
desc?: string;
|
|
456
|
+
descId?: string;
|
|
244
457
|
}>;
|
|
245
458
|
readonly paw: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
246
459
|
title?: string;
|
|
460
|
+
titleId?: string;
|
|
461
|
+
desc?: string;
|
|
462
|
+
descId?: string;
|
|
247
463
|
}>;
|
|
248
464
|
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
249
465
|
title?: string;
|
|
466
|
+
titleId?: string;
|
|
467
|
+
desc?: string;
|
|
468
|
+
descId?: string;
|
|
250
469
|
}>;
|
|
251
470
|
readonly pencil_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
252
471
|
title?: string;
|
|
472
|
+
titleId?: string;
|
|
473
|
+
desc?: string;
|
|
474
|
+
descId?: string;
|
|
253
475
|
}>;
|
|
254
476
|
readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
255
477
|
title?: string;
|
|
478
|
+
titleId?: string;
|
|
479
|
+
desc?: string;
|
|
480
|
+
descId?: string;
|
|
256
481
|
}>;
|
|
257
482
|
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
258
483
|
title?: string;
|
|
484
|
+
titleId?: string;
|
|
485
|
+
desc?: string;
|
|
486
|
+
descId?: string;
|
|
259
487
|
}>;
|
|
260
488
|
readonly pins: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
261
489
|
title?: string;
|
|
490
|
+
titleId?: string;
|
|
491
|
+
desc?: string;
|
|
492
|
+
descId?: string;
|
|
262
493
|
}>;
|
|
263
494
|
readonly plant: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
264
495
|
title?: string;
|
|
496
|
+
titleId?: string;
|
|
497
|
+
desc?: string;
|
|
498
|
+
descId?: string;
|
|
265
499
|
}>;
|
|
266
500
|
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
267
501
|
title?: string;
|
|
502
|
+
titleId?: string;
|
|
503
|
+
desc?: string;
|
|
504
|
+
descId?: string;
|
|
268
505
|
}>;
|
|
269
506
|
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
270
507
|
title?: string;
|
|
508
|
+
titleId?: string;
|
|
509
|
+
desc?: string;
|
|
510
|
+
descId?: string;
|
|
271
511
|
}>;
|
|
272
512
|
readonly poll: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
273
513
|
title?: string;
|
|
514
|
+
titleId?: string;
|
|
515
|
+
desc?: string;
|
|
516
|
+
descId?: string;
|
|
274
517
|
}>;
|
|
275
518
|
readonly post: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
276
519
|
title?: string;
|
|
520
|
+
titleId?: string;
|
|
521
|
+
desc?: string;
|
|
522
|
+
descId?: string;
|
|
277
523
|
}>;
|
|
278
524
|
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
279
525
|
title?: string;
|
|
526
|
+
titleId?: string;
|
|
527
|
+
desc?: string;
|
|
528
|
+
descId?: string;
|
|
280
529
|
}>;
|
|
281
530
|
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
282
531
|
title?: string;
|
|
532
|
+
titleId?: string;
|
|
533
|
+
desc?: string;
|
|
534
|
+
descId?: string;
|
|
283
535
|
}>;
|
|
284
536
|
readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
285
537
|
title?: string;
|
|
538
|
+
titleId?: string;
|
|
539
|
+
desc?: string;
|
|
540
|
+
descId?: string;
|
|
286
541
|
}>;
|
|
287
542
|
readonly question: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
288
543
|
title?: string;
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}>;
|
|
293
|
-
readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
294
|
-
title?: string;
|
|
544
|
+
titleId?: string;
|
|
545
|
+
desc?: string;
|
|
546
|
+
descId?: string;
|
|
295
547
|
}>;
|
|
296
548
|
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
297
549
|
title?: string;
|
|
550
|
+
titleId?: string;
|
|
551
|
+
desc?: string;
|
|
552
|
+
descId?: string;
|
|
298
553
|
}>;
|
|
299
554
|
readonly settings_cog: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
300
555
|
title?: string;
|
|
556
|
+
titleId?: string;
|
|
557
|
+
desc?: string;
|
|
558
|
+
descId?: string;
|
|
301
559
|
}>;
|
|
302
560
|
readonly shopping_bag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
303
561
|
title?: string;
|
|
562
|
+
titleId?: string;
|
|
563
|
+
desc?: string;
|
|
564
|
+
descId?: string;
|
|
304
565
|
}>;
|
|
305
566
|
readonly shopping_cart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
306
567
|
title?: string;
|
|
568
|
+
titleId?: string;
|
|
569
|
+
desc?: string;
|
|
570
|
+
descId?: string;
|
|
307
571
|
}>;
|
|
308
572
|
readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
309
573
|
title?: string;
|
|
574
|
+
titleId?: string;
|
|
575
|
+
desc?: string;
|
|
576
|
+
descId?: string;
|
|
310
577
|
}>;
|
|
311
578
|
readonly star: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
312
579
|
title?: string;
|
|
580
|
+
titleId?: string;
|
|
581
|
+
desc?: string;
|
|
582
|
+
descId?: string;
|
|
313
583
|
}>;
|
|
314
584
|
readonly suitcase: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
315
585
|
title?: string;
|
|
586
|
+
titleId?: string;
|
|
587
|
+
desc?: string;
|
|
588
|
+
descId?: string;
|
|
316
589
|
}>;
|
|
317
590
|
readonly supporter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
318
591
|
title?: string;
|
|
592
|
+
titleId?: string;
|
|
593
|
+
desc?: string;
|
|
594
|
+
descId?: string;
|
|
319
595
|
}>;
|
|
320
596
|
readonly supporter_new: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
321
597
|
title?: string;
|
|
598
|
+
titleId?: string;
|
|
599
|
+
desc?: string;
|
|
600
|
+
descId?: string;
|
|
322
601
|
}>;
|
|
323
602
|
readonly supporter_new_colored: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
324
603
|
title?: string;
|
|
604
|
+
titleId?: string;
|
|
605
|
+
desc?: string;
|
|
606
|
+
descId?: string;
|
|
607
|
+
}>;
|
|
608
|
+
readonly supporter_white: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
609
|
+
title?: string;
|
|
610
|
+
titleId?: string;
|
|
611
|
+
desc?: string;
|
|
612
|
+
descId?: string;
|
|
325
613
|
}>;
|
|
326
614
|
readonly tennis_ball: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
327
615
|
title?: string;
|
|
616
|
+
titleId?: string;
|
|
617
|
+
desc?: string;
|
|
618
|
+
descId?: string;
|
|
328
619
|
}>;
|
|
329
620
|
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
330
621
|
title?: string;
|
|
622
|
+
titleId?: string;
|
|
623
|
+
desc?: string;
|
|
624
|
+
descId?: string;
|
|
331
625
|
}>;
|
|
332
626
|
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
333
627
|
title?: string;
|
|
628
|
+
titleId?: string;
|
|
629
|
+
desc?: string;
|
|
630
|
+
descId?: string;
|
|
334
631
|
}>;
|
|
335
632
|
readonly truck: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
336
633
|
title?: string;
|
|
634
|
+
titleId?: string;
|
|
635
|
+
desc?: string;
|
|
636
|
+
descId?: string;
|
|
337
637
|
}>;
|
|
338
638
|
readonly user: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
339
639
|
title?: string;
|
|
640
|
+
titleId?: string;
|
|
641
|
+
desc?: string;
|
|
642
|
+
descId?: string;
|
|
340
643
|
}>;
|
|
341
644
|
readonly user_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
342
645
|
title?: string;
|
|
646
|
+
titleId?: string;
|
|
647
|
+
desc?: string;
|
|
648
|
+
descId?: string;
|
|
343
649
|
}>;
|
|
344
650
|
readonly wellness: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
345
651
|
title?: string;
|
|
652
|
+
titleId?: string;
|
|
653
|
+
desc?: string;
|
|
654
|
+
descId?: string;
|
|
346
655
|
}>;
|
|
347
656
|
};
|
|
348
657
|
export default IconsMap;
|