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