huspy-icons 0.3.6 → 0.3.7
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/dist/fonts/HuspyIcons.css +139 -73
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +91 -69
- package/dist/fonts/HuspyIcons.ts +136 -70
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +91 -69
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +46 -2
- package/dist/react/index.d.ts +46 -2
- package/dist/react/index.js +2442 -779
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +2311 -648
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +92 -70
- package/src/react/Accessibility.tsx +50 -0
- package/src/react/AirConditioner.tsx +62 -0
- package/src/react/Archive.tsx +38 -0
- package/src/react/BalconyWindow.tsx +24 -0
- package/src/react/Bath.tsx +50 -0
- package/src/react/Closet.tsx +24 -0
- package/src/react/DoorOpen.tsx +50 -0
- package/src/react/Electric.tsx +56 -0
- package/src/react/Garden.tsx +44 -0
- package/src/react/GasHeating.tsx +62 -0
- package/src/react/Heating.tsx +56 -0
- package/src/react/Icon.tsx +67 -1
- package/src/react/Image.tsx +38 -0
- package/src/react/Lift.tsx +24 -0
- package/src/react/MagicWand.tsx +68 -0
- package/src/react/Outside.tsx +68 -0
- package/src/react/Parking.tsx +50 -0
- package/src/react/Patio.tsx +74 -0
- package/src/react/Pet.tsx +56 -0
- package/src/react/Restaurant.tsx +32 -0
- package/src/react/SwimmingPool.tsx +56 -0
- package/src/react/Terrace.tsx +24 -0
- package/src/react/ThermometerSnowflake.tsx +56 -0
- package/src/react/index.ts +22 -0
- package/src/react/index.tsx +22 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "HuspyIcons";
|
|
3
|
-
src: url(".//HuspyIcons.ttf?
|
|
4
|
-
url(".//HuspyIcons.woff?
|
|
5
|
-
url(".//HuspyIcons.woff2?
|
|
6
|
-
url(".//HuspyIcons.eot?
|
|
3
|
+
src: url(".//HuspyIcons.ttf?d2dd892145d33e9f577468b8dca83d0c") format("truetype"),
|
|
4
|
+
url(".//HuspyIcons.woff?d2dd892145d33e9f577468b8dca83d0c") format("woff"),
|
|
5
|
+
url(".//HuspyIcons.woff2?d2dd892145d33e9f577468b8dca83d0c") format("woff2"),
|
|
6
|
+
url(".//HuspyIcons.eot?d2dd892145d33e9f577468b8dca83d0c#iefix") format("embedded-opentype");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.icon:before {
|
|
@@ -26,210 +26,276 @@ url(".//HuspyIcons.eot?507d5171aedff9539343c82d9a86d038#iefix") format("embedded
|
|
|
26
26
|
.icon.huspy-icon-trash-2:before {
|
|
27
27
|
content: "\f103";
|
|
28
28
|
}
|
|
29
|
-
.icon.huspy-icon-
|
|
29
|
+
.icon.huspy-icon-thermometer-snowflake:before {
|
|
30
30
|
content: "\f104";
|
|
31
31
|
}
|
|
32
|
-
.icon.huspy-icon-
|
|
32
|
+
.icon.huspy-icon-terrace:before {
|
|
33
33
|
content: "\f105";
|
|
34
34
|
}
|
|
35
|
-
.icon.huspy-icon-
|
|
35
|
+
.icon.huspy-icon-swimming-pool:before {
|
|
36
36
|
content: "\f106";
|
|
37
37
|
}
|
|
38
|
-
.icon.huspy-icon-
|
|
38
|
+
.icon.huspy-icon-size-3d:before {
|
|
39
39
|
content: "\f107";
|
|
40
40
|
}
|
|
41
|
-
.icon.huspy-icon-
|
|
41
|
+
.icon.huspy-icon-share:before {
|
|
42
42
|
content: "\f108";
|
|
43
43
|
}
|
|
44
|
-
.icon.huspy-icon-
|
|
44
|
+
.icon.huspy-icon-search:before {
|
|
45
45
|
content: "\f109";
|
|
46
46
|
}
|
|
47
|
-
.icon.huspy-icon-
|
|
47
|
+
.icon.huspy-icon-search-x:before {
|
|
48
48
|
content: "\f10a";
|
|
49
49
|
}
|
|
50
|
-
.icon.huspy-icon-
|
|
50
|
+
.icon.huspy-icon-sale:before {
|
|
51
51
|
content: "\f10b";
|
|
52
52
|
}
|
|
53
|
-
.icon.huspy-icon-
|
|
53
|
+
.icon.huspy-icon-restaurant:before {
|
|
54
54
|
content: "\f10c";
|
|
55
55
|
}
|
|
56
|
-
.icon.huspy-icon-
|
|
56
|
+
.icon.huspy-icon-rent:before {
|
|
57
57
|
content: "\f10d";
|
|
58
58
|
}
|
|
59
|
-
.icon.huspy-icon-
|
|
59
|
+
.icon.huspy-icon-properties-linear:before {
|
|
60
60
|
content: "\f10e";
|
|
61
61
|
}
|
|
62
|
-
.icon.huspy-icon-
|
|
62
|
+
.icon.huspy-icon-properties-filled:before {
|
|
63
63
|
content: "\f10f";
|
|
64
64
|
}
|
|
65
|
-
.icon.huspy-icon-
|
|
65
|
+
.icon.huspy-icon-promotion:before {
|
|
66
66
|
content: "\f110";
|
|
67
67
|
}
|
|
68
|
-
.icon.huspy-icon-
|
|
68
|
+
.icon.huspy-icon-plus:before {
|
|
69
69
|
content: "\f111";
|
|
70
70
|
}
|
|
71
|
-
.icon.huspy-icon-
|
|
71
|
+
.icon.huspy-icon-pin_map_solid:before {
|
|
72
72
|
content: "\f112";
|
|
73
73
|
}
|
|
74
|
-
.icon.huspy-icon-
|
|
74
|
+
.icon.huspy-icon-phone-linear:before {
|
|
75
75
|
content: "\f113";
|
|
76
76
|
}
|
|
77
|
-
.icon.huspy-icon-
|
|
77
|
+
.icon.huspy-icon-pet:before {
|
|
78
78
|
content: "\f114";
|
|
79
79
|
}
|
|
80
|
-
.icon.huspy-icon-
|
|
80
|
+
.icon.huspy-icon-pencil-line:before {
|
|
81
81
|
content: "\f115";
|
|
82
82
|
}
|
|
83
|
-
.icon.huspy-icon-
|
|
83
|
+
.icon.huspy-icon-payments:before {
|
|
84
84
|
content: "\f116";
|
|
85
85
|
}
|
|
86
|
-
.icon.huspy-icon-
|
|
86
|
+
.icon.huspy-icon-patio:before {
|
|
87
87
|
content: "\f117";
|
|
88
88
|
}
|
|
89
|
-
.icon.huspy-icon-
|
|
89
|
+
.icon.huspy-icon-parking:before {
|
|
90
90
|
content: "\f118";
|
|
91
91
|
}
|
|
92
|
-
.icon.huspy-icon-
|
|
92
|
+
.icon.huspy-icon-outside:before {
|
|
93
93
|
content: "\f119";
|
|
94
94
|
}
|
|
95
|
-
.icon.huspy-icon-
|
|
95
|
+
.icon.huspy-icon-notes:before {
|
|
96
96
|
content: "\f11a";
|
|
97
97
|
}
|
|
98
|
-
.icon.huspy-icon-
|
|
98
|
+
.icon.huspy-icon-note:before {
|
|
99
99
|
content: "\f11b";
|
|
100
100
|
}
|
|
101
|
-
.icon.huspy-icon-
|
|
101
|
+
.icon.huspy-icon-mortgage:before {
|
|
102
102
|
content: "\f11c";
|
|
103
103
|
}
|
|
104
|
-
.icon.huspy-icon-
|
|
104
|
+
.icon.huspy-icon-more-horizontal:before {
|
|
105
105
|
content: "\f11d";
|
|
106
106
|
}
|
|
107
|
-
.icon.huspy-icon-
|
|
107
|
+
.icon.huspy-icon-map-pin:before {
|
|
108
108
|
content: "\f11e";
|
|
109
109
|
}
|
|
110
|
-
.icon.huspy-icon-
|
|
110
|
+
.icon.huspy-icon-mail:before {
|
|
111
111
|
content: "\f11f";
|
|
112
112
|
}
|
|
113
|
-
.icon.huspy-icon-
|
|
113
|
+
.icon.huspy-icon-magic-wand:before {
|
|
114
114
|
content: "\f120";
|
|
115
115
|
}
|
|
116
|
-
.icon.huspy-icon-
|
|
116
|
+
.icon.huspy-icon-logout:before {
|
|
117
117
|
content: "\f121";
|
|
118
118
|
}
|
|
119
|
-
.icon.huspy-icon-
|
|
119
|
+
.icon.huspy-icon-lock:before {
|
|
120
120
|
content: "\f122";
|
|
121
121
|
}
|
|
122
|
-
.icon.huspy-icon-
|
|
122
|
+
.icon.huspy-icon-lift:before {
|
|
123
123
|
content: "\f123";
|
|
124
124
|
}
|
|
125
|
-
.icon.huspy-icon-
|
|
125
|
+
.icon.huspy-icon-leads-linear:before {
|
|
126
126
|
content: "\f124";
|
|
127
127
|
}
|
|
128
|
-
.icon.huspy-icon-
|
|
128
|
+
.icon.huspy-icon-leads-filled:before {
|
|
129
129
|
content: "\f125";
|
|
130
130
|
}
|
|
131
|
-
.icon.huspy-icon-
|
|
131
|
+
.icon.huspy-icon-keys_01:before {
|
|
132
132
|
content: "\f126";
|
|
133
133
|
}
|
|
134
|
-
.icon.huspy-icon-
|
|
134
|
+
.icon.huspy-icon-info:before {
|
|
135
135
|
content: "\f127";
|
|
136
136
|
}
|
|
137
|
-
.icon.huspy-icon-
|
|
137
|
+
.icon.huspy-icon-image:before {
|
|
138
138
|
content: "\f128";
|
|
139
139
|
}
|
|
140
|
-
.icon.huspy-icon-
|
|
140
|
+
.icon.huspy-icon-icon-slot:before {
|
|
141
141
|
content: "\f129";
|
|
142
142
|
}
|
|
143
|
-
.icon.huspy-icon-
|
|
143
|
+
.icon.huspy-icon-home-linear:before {
|
|
144
144
|
content: "\f12a";
|
|
145
145
|
}
|
|
146
|
-
.icon.huspy-icon-
|
|
146
|
+
.icon.huspy-icon-home-filled:before {
|
|
147
147
|
content: "\f12b";
|
|
148
148
|
}
|
|
149
|
-
.icon.huspy-icon-
|
|
149
|
+
.icon.huspy-icon-help-circle:before {
|
|
150
150
|
content: "\f12c";
|
|
151
151
|
}
|
|
152
|
-
.icon.huspy-icon-
|
|
152
|
+
.icon.huspy-icon-heating:before {
|
|
153
153
|
content: "\f12d";
|
|
154
154
|
}
|
|
155
|
-
.icon.huspy-icon-
|
|
155
|
+
.icon.huspy-icon-gas-heating:before {
|
|
156
156
|
content: "\f12e";
|
|
157
157
|
}
|
|
158
|
-
.icon.huspy-icon-
|
|
158
|
+
.icon.huspy-icon-garden:before {
|
|
159
159
|
content: "\f12f";
|
|
160
160
|
}
|
|
161
|
-
.icon.huspy-icon-
|
|
161
|
+
.icon.huspy-icon-fingerprint-android:before {
|
|
162
162
|
content: "\f130";
|
|
163
163
|
}
|
|
164
|
-
.icon.huspy-icon-
|
|
164
|
+
.icon.huspy-icon-filter:before {
|
|
165
165
|
content: "\f131";
|
|
166
166
|
}
|
|
167
|
-
.icon.huspy-icon-
|
|
167
|
+
.icon.huspy-icon-file-text:before {
|
|
168
168
|
content: "\f132";
|
|
169
169
|
}
|
|
170
|
-
.icon.huspy-icon-
|
|
170
|
+
.icon.huspy-icon-file-spreadsheet:before {
|
|
171
171
|
content: "\f133";
|
|
172
172
|
}
|
|
173
|
-
.icon.huspy-icon-
|
|
173
|
+
.icon.huspy-icon-file-signature:before {
|
|
174
174
|
content: "\f134";
|
|
175
175
|
}
|
|
176
|
-
.icon.huspy-icon-
|
|
176
|
+
.icon.huspy-icon-file-lock:before {
|
|
177
177
|
content: "\f135";
|
|
178
178
|
}
|
|
179
|
-
.icon.huspy-icon-
|
|
179
|
+
.icon.huspy-icon-file-key:before {
|
|
180
180
|
content: "\f136";
|
|
181
181
|
}
|
|
182
|
-
.icon.huspy-icon-
|
|
182
|
+
.icon.huspy-icon-file-input:before {
|
|
183
183
|
content: "\f137";
|
|
184
184
|
}
|
|
185
|
-
.icon.huspy-icon-
|
|
185
|
+
.icon.huspy-icon-file-check:before {
|
|
186
186
|
content: "\f138";
|
|
187
187
|
}
|
|
188
|
-
.icon.huspy-icon-
|
|
188
|
+
.icon.huspy-icon-face-id:before {
|
|
189
189
|
content: "\f139";
|
|
190
190
|
}
|
|
191
|
-
.icon.huspy-icon-
|
|
191
|
+
.icon.huspy-icon-eye-visible:before {
|
|
192
192
|
content: "\f13a";
|
|
193
193
|
}
|
|
194
|
-
.icon.huspy-icon-
|
|
194
|
+
.icon.huspy-icon-eye-hidden:before {
|
|
195
195
|
content: "\f13b";
|
|
196
196
|
}
|
|
197
|
-
.icon.huspy-icon-
|
|
197
|
+
.icon.huspy-icon-explore-linear:before {
|
|
198
198
|
content: "\f13c";
|
|
199
199
|
}
|
|
200
|
-
.icon.huspy-icon-
|
|
200
|
+
.icon.huspy-icon-explore-filled:before {
|
|
201
201
|
content: "\f13d";
|
|
202
202
|
}
|
|
203
|
-
.icon.huspy-icon-
|
|
203
|
+
.icon.huspy-icon-electric:before {
|
|
204
204
|
content: "\f13e";
|
|
205
205
|
}
|
|
206
|
-
.icon.huspy-icon-
|
|
206
|
+
.icon.huspy-icon-edit:before {
|
|
207
207
|
content: "\f13f";
|
|
208
208
|
}
|
|
209
|
-
.icon.huspy-icon-
|
|
209
|
+
.icon.huspy-icon-door-open:before {
|
|
210
210
|
content: "\f140";
|
|
211
211
|
}
|
|
212
|
-
.icon.huspy-icon-
|
|
212
|
+
.icon.huspy-icon-collections:before {
|
|
213
213
|
content: "\f141";
|
|
214
214
|
}
|
|
215
|
-
.icon.huspy-icon-
|
|
215
|
+
.icon.huspy-icon-closet:before {
|
|
216
216
|
content: "\f142";
|
|
217
217
|
}
|
|
218
|
-
.icon.huspy-icon-
|
|
218
|
+
.icon.huspy-icon-chevron-up:before {
|
|
219
219
|
content: "\f143";
|
|
220
220
|
}
|
|
221
|
-
.icon.huspy-icon-
|
|
221
|
+
.icon.huspy-icon-chevron-right:before {
|
|
222
222
|
content: "\f144";
|
|
223
223
|
}
|
|
224
|
-
.icon.huspy-icon-
|
|
224
|
+
.icon.huspy-icon-chevron-left:before {
|
|
225
225
|
content: "\f145";
|
|
226
226
|
}
|
|
227
|
-
.icon.huspy-icon-
|
|
227
|
+
.icon.huspy-icon-chevron-down:before {
|
|
228
228
|
content: "\f146";
|
|
229
229
|
}
|
|
230
|
-
.icon.huspy-icon-
|
|
230
|
+
.icon.huspy-icon-check:before {
|
|
231
231
|
content: "\f147";
|
|
232
232
|
}
|
|
233
|
-
.icon.huspy-icon-
|
|
233
|
+
.icon.huspy-icon-check-circle-2:before {
|
|
234
234
|
content: "\f148";
|
|
235
235
|
}
|
|
236
|
+
.icon.huspy-icon-cancel:before {
|
|
237
|
+
content: "\f149";
|
|
238
|
+
}
|
|
239
|
+
.icon.huspy-icon-cancel-circle-solid:before {
|
|
240
|
+
content: "\f14a";
|
|
241
|
+
}
|
|
242
|
+
.icon.huspy-icon-calendar:before {
|
|
243
|
+
content: "\f14b";
|
|
244
|
+
}
|
|
245
|
+
.icon.huspy-icon-building:before {
|
|
246
|
+
content: "\f14c";
|
|
247
|
+
}
|
|
248
|
+
.icon.huspy-icon-bell:before {
|
|
249
|
+
content: "\f14d";
|
|
250
|
+
}
|
|
251
|
+
.icon.huspy-icon-bed-double:before {
|
|
252
|
+
content: "\f14e";
|
|
253
|
+
}
|
|
254
|
+
.icon.huspy-icon-bath:before {
|
|
255
|
+
content: "\f14f";
|
|
256
|
+
}
|
|
257
|
+
.icon.huspy-icon-balcony-window:before {
|
|
258
|
+
content: "\f150";
|
|
259
|
+
}
|
|
260
|
+
.icon.huspy-icon-arrow-up:before {
|
|
261
|
+
content: "\f151";
|
|
262
|
+
}
|
|
263
|
+
.icon.huspy-icon-arrow-up-right:before {
|
|
264
|
+
content: "\f152";
|
|
265
|
+
}
|
|
266
|
+
.icon.huspy-icon-arrow-up-left:before {
|
|
267
|
+
content: "\f153";
|
|
268
|
+
}
|
|
269
|
+
.icon.huspy-icon-arrow-up-down:before {
|
|
270
|
+
content: "\f154";
|
|
271
|
+
}
|
|
272
|
+
.icon.huspy-icon-arrow-right:before {
|
|
273
|
+
content: "\f155";
|
|
274
|
+
}
|
|
275
|
+
.icon.huspy-icon-arrow-left:before {
|
|
276
|
+
content: "\f156";
|
|
277
|
+
}
|
|
278
|
+
.icon.huspy-icon-arrow-down:before {
|
|
279
|
+
content: "\f157";
|
|
280
|
+
}
|
|
281
|
+
.icon.huspy-icon-arrow-down-right:before {
|
|
282
|
+
content: "\f158";
|
|
283
|
+
}
|
|
284
|
+
.icon.huspy-icon-arrow-down-left:before {
|
|
285
|
+
content: "\f159";
|
|
286
|
+
}
|
|
287
|
+
.icon.huspy-icon-archive:before {
|
|
288
|
+
content: "\f15a";
|
|
289
|
+
}
|
|
290
|
+
.icon.huspy-icon-alert-triangle:before {
|
|
291
|
+
content: "\f15b";
|
|
292
|
+
}
|
|
293
|
+
.icon.huspy-icon-air-conditioner:before {
|
|
294
|
+
content: "\f15c";
|
|
295
|
+
}
|
|
296
|
+
.icon.huspy-icon-add-note:before {
|
|
297
|
+
content: "\f15d";
|
|
298
|
+
}
|
|
299
|
+
.icon.huspy-icon-accessibility:before {
|
|
300
|
+
content: "\f15e";
|
|
301
|
+
}
|
|
Binary file
|
|
@@ -2,73 +2,95 @@
|
|
|
2
2
|
"whatsapp": 61697,
|
|
3
3
|
"user": 61698,
|
|
4
4
|
"trash-2": 61699,
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
5
|
+
"thermometer-snowflake": 61700,
|
|
6
|
+
"terrace": 61701,
|
|
7
|
+
"swimming-pool": 61702,
|
|
8
|
+
"size-3d": 61703,
|
|
9
|
+
"share": 61704,
|
|
10
|
+
"search": 61705,
|
|
11
|
+
"search-x": 61706,
|
|
12
|
+
"sale": 61707,
|
|
13
|
+
"restaurant": 61708,
|
|
14
|
+
"rent": 61709,
|
|
15
|
+
"properties-linear": 61710,
|
|
16
|
+
"properties-filled": 61711,
|
|
17
|
+
"promotion": 61712,
|
|
18
|
+
"plus": 61713,
|
|
19
|
+
"pin_map_solid": 61714,
|
|
20
|
+
"phone-linear": 61715,
|
|
21
|
+
"pet": 61716,
|
|
22
|
+
"pencil-line": 61717,
|
|
23
|
+
"payments": 61718,
|
|
24
|
+
"patio": 61719,
|
|
25
|
+
"parking": 61720,
|
|
26
|
+
"outside": 61721,
|
|
27
|
+
"notes": 61722,
|
|
28
|
+
"note": 61723,
|
|
29
|
+
"mortgage": 61724,
|
|
30
|
+
"more-horizontal": 61725,
|
|
31
|
+
"map-pin": 61726,
|
|
32
|
+
"mail": 61727,
|
|
33
|
+
"magic-wand": 61728,
|
|
34
|
+
"logout": 61729,
|
|
35
|
+
"lock": 61730,
|
|
36
|
+
"lift": 61731,
|
|
37
|
+
"leads-linear": 61732,
|
|
38
|
+
"leads-filled": 61733,
|
|
39
|
+
"keys_01": 61734,
|
|
40
|
+
"info": 61735,
|
|
41
|
+
"image": 61736,
|
|
42
|
+
"icon-slot": 61737,
|
|
43
|
+
"home-linear": 61738,
|
|
44
|
+
"home-filled": 61739,
|
|
45
|
+
"help-circle": 61740,
|
|
46
|
+
"heating": 61741,
|
|
47
|
+
"gas-heating": 61742,
|
|
48
|
+
"garden": 61743,
|
|
49
|
+
"fingerprint-android": 61744,
|
|
50
|
+
"filter": 61745,
|
|
51
|
+
"file-text": 61746,
|
|
52
|
+
"file-spreadsheet": 61747,
|
|
53
|
+
"file-signature": 61748,
|
|
54
|
+
"file-lock": 61749,
|
|
55
|
+
"file-key": 61750,
|
|
56
|
+
"file-input": 61751,
|
|
57
|
+
"file-check": 61752,
|
|
58
|
+
"face-id": 61753,
|
|
59
|
+
"eye-visible": 61754,
|
|
60
|
+
"eye-hidden": 61755,
|
|
61
|
+
"explore-linear": 61756,
|
|
62
|
+
"explore-filled": 61757,
|
|
63
|
+
"electric": 61758,
|
|
64
|
+
"edit": 61759,
|
|
65
|
+
"door-open": 61760,
|
|
66
|
+
"collections": 61761,
|
|
67
|
+
"closet": 61762,
|
|
68
|
+
"chevron-up": 61763,
|
|
69
|
+
"chevron-right": 61764,
|
|
70
|
+
"chevron-left": 61765,
|
|
71
|
+
"chevron-down": 61766,
|
|
72
|
+
"check": 61767,
|
|
73
|
+
"check-circle-2": 61768,
|
|
74
|
+
"cancel": 61769,
|
|
75
|
+
"cancel-circle-solid": 61770,
|
|
76
|
+
"calendar": 61771,
|
|
77
|
+
"building": 61772,
|
|
78
|
+
"bell": 61773,
|
|
79
|
+
"bed-double": 61774,
|
|
80
|
+
"bath": 61775,
|
|
81
|
+
"balcony-window": 61776,
|
|
82
|
+
"arrow-up": 61777,
|
|
83
|
+
"arrow-up-right": 61778,
|
|
84
|
+
"arrow-up-left": 61779,
|
|
85
|
+
"arrow-up-down": 61780,
|
|
86
|
+
"arrow-right": 61781,
|
|
87
|
+
"arrow-left": 61782,
|
|
88
|
+
"arrow-down": 61783,
|
|
89
|
+
"arrow-down-right": 61784,
|
|
90
|
+
"arrow-down-left": 61785,
|
|
91
|
+
"archive": 61786,
|
|
92
|
+
"alert-triangle": 61787,
|
|
93
|
+
"air-conditioner": 61788,
|
|
94
|
+
"add-note": 61789,
|
|
95
|
+
"accessibility": 61790
|
|
74
96
|
}
|