huspy-icons 0.3.9 → 0.3.11
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 +105 -96
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +95 -92
- package/dist/fonts/HuspyIcons.ts +101 -92
- 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 +95 -92
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +8 -2
- package/dist/react/index.d.ts +8 -2
- package/dist/react/index.js +606 -466
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +534 -394
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +96 -93
- package/src/react/CircleOff.tsx +24 -0
- package/src/react/History.tsx +38 -0
- package/src/react/Icon.tsx +10 -1
- package/src/react/StatusDot.tsx +24 -0
- package/src/react/index.ts +3 -0
- package/src/react/index.tsx +3 -0
package/dist/fonts/HuspyIcons.ts
CHANGED
|
@@ -8,6 +8,7 @@ export type HuspyIconsId =
|
|
|
8
8
|
| "thermometer-snowflake"
|
|
9
9
|
| "terrace"
|
|
10
10
|
| "swimming-pool"
|
|
11
|
+
| "status-dot"
|
|
11
12
|
| "size-3d"
|
|
12
13
|
| "share"
|
|
13
14
|
| "search"
|
|
@@ -46,6 +47,7 @@ export type HuspyIconsId =
|
|
|
46
47
|
| "icon-slot"
|
|
47
48
|
| "home-linear"
|
|
48
49
|
| "home-filled"
|
|
50
|
+
| "history"
|
|
49
51
|
| "help-circle"
|
|
50
52
|
| "heating"
|
|
51
53
|
| "gas-heating"
|
|
@@ -70,6 +72,7 @@ export type HuspyIconsId =
|
|
|
70
72
|
| "door-open"
|
|
71
73
|
| "collections"
|
|
72
74
|
| "closet"
|
|
75
|
+
| "circle-off"
|
|
73
76
|
| "chevron-up"
|
|
74
77
|
| "chevron-right"
|
|
75
78
|
| "chevron-left"
|
|
@@ -111,6 +114,7 @@ export enum HuspyIcons {
|
|
|
111
114
|
ThermometerSnowflake = "thermometer-snowflake",
|
|
112
115
|
Terrace = "terrace",
|
|
113
116
|
SwimmingPool = "swimming-pool",
|
|
117
|
+
StatusDot = "status-dot",
|
|
114
118
|
Size3d = "size-3d",
|
|
115
119
|
Share = "share",
|
|
116
120
|
Search = "search",
|
|
@@ -149,6 +153,7 @@ export enum HuspyIcons {
|
|
|
149
153
|
IconSlot = "icon-slot",
|
|
150
154
|
HomeLinear = "home-linear",
|
|
151
155
|
HomeFilled = "home-filled",
|
|
156
|
+
History = "history",
|
|
152
157
|
HelpCircle = "help-circle",
|
|
153
158
|
Heating = "heating",
|
|
154
159
|
GasHeating = "gas-heating",
|
|
@@ -173,6 +178,7 @@ export enum HuspyIcons {
|
|
|
173
178
|
DoorOpen = "door-open",
|
|
174
179
|
Collections = "collections",
|
|
175
180
|
Closet = "closet",
|
|
181
|
+
CircleOff = "circle-off",
|
|
176
182
|
ChevronUp = "chevron-up",
|
|
177
183
|
ChevronRight = "chevron-right",
|
|
178
184
|
ChevronLeft = "chevron-left",
|
|
@@ -215,96 +221,99 @@ export const HUSPY_ICONS_CODEPOINTS: { [key in HuspyIcons]: string } = {
|
|
|
215
221
|
[HuspyIcons.ThermometerSnowflake]: "61703",
|
|
216
222
|
[HuspyIcons.Terrace]: "61704",
|
|
217
223
|
[HuspyIcons.SwimmingPool]: "61705",
|
|
218
|
-
[HuspyIcons.
|
|
219
|
-
[HuspyIcons.
|
|
220
|
-
[HuspyIcons.
|
|
221
|
-
[HuspyIcons.
|
|
222
|
-
[HuspyIcons.
|
|
223
|
-
[HuspyIcons.
|
|
224
|
-
[HuspyIcons.
|
|
225
|
-
[HuspyIcons.
|
|
226
|
-
[HuspyIcons.
|
|
227
|
-
[HuspyIcons.
|
|
228
|
-
[HuspyIcons.
|
|
229
|
-
[HuspyIcons.
|
|
230
|
-
[HuspyIcons.
|
|
231
|
-
[HuspyIcons.
|
|
232
|
-
[HuspyIcons.
|
|
233
|
-
[HuspyIcons.
|
|
234
|
-
[HuspyIcons.
|
|
235
|
-
[HuspyIcons.
|
|
236
|
-
[HuspyIcons.
|
|
237
|
-
[HuspyIcons.
|
|
238
|
-
[HuspyIcons.
|
|
239
|
-
[HuspyIcons.
|
|
240
|
-
[HuspyIcons.
|
|
241
|
-
[HuspyIcons.
|
|
242
|
-
[HuspyIcons.
|
|
243
|
-
[HuspyIcons.
|
|
244
|
-
[HuspyIcons.
|
|
245
|
-
[HuspyIcons.
|
|
246
|
-
[HuspyIcons.
|
|
247
|
-
[HuspyIcons.
|
|
248
|
-
[HuspyIcons.
|
|
249
|
-
[HuspyIcons.
|
|
250
|
-
[HuspyIcons.
|
|
251
|
-
[HuspyIcons.
|
|
252
|
-
[HuspyIcons.
|
|
253
|
-
[HuspyIcons.
|
|
254
|
-
[HuspyIcons.
|
|
255
|
-
[HuspyIcons.
|
|
256
|
-
[HuspyIcons.
|
|
257
|
-
[HuspyIcons.
|
|
258
|
-
[HuspyIcons.
|
|
259
|
-
[HuspyIcons.
|
|
260
|
-
[HuspyIcons.
|
|
261
|
-
[HuspyIcons.
|
|
262
|
-
[HuspyIcons.
|
|
263
|
-
[HuspyIcons.
|
|
264
|
-
[HuspyIcons.
|
|
265
|
-
[HuspyIcons.
|
|
266
|
-
[HuspyIcons.
|
|
267
|
-
[HuspyIcons.
|
|
268
|
-
[HuspyIcons.
|
|
269
|
-
[HuspyIcons.
|
|
270
|
-
[HuspyIcons.
|
|
271
|
-
[HuspyIcons.
|
|
272
|
-
[HuspyIcons.
|
|
273
|
-
[HuspyIcons.
|
|
274
|
-
[HuspyIcons.
|
|
275
|
-
[HuspyIcons.
|
|
276
|
-
[HuspyIcons.
|
|
277
|
-
[HuspyIcons.
|
|
278
|
-
[HuspyIcons.
|
|
279
|
-
[HuspyIcons.
|
|
280
|
-
[HuspyIcons.
|
|
281
|
-
[HuspyIcons.
|
|
282
|
-
[HuspyIcons.
|
|
283
|
-
[HuspyIcons.
|
|
284
|
-
[HuspyIcons.
|
|
285
|
-
[HuspyIcons.
|
|
286
|
-
[HuspyIcons.
|
|
287
|
-
[HuspyIcons.
|
|
288
|
-
[HuspyIcons.
|
|
289
|
-
[HuspyIcons.
|
|
290
|
-
[HuspyIcons.
|
|
291
|
-
[HuspyIcons.
|
|
292
|
-
[HuspyIcons.
|
|
293
|
-
[HuspyIcons.
|
|
294
|
-
[HuspyIcons.
|
|
295
|
-
[HuspyIcons.
|
|
296
|
-
[HuspyIcons.
|
|
297
|
-
[HuspyIcons.
|
|
298
|
-
[HuspyIcons.
|
|
299
|
-
[HuspyIcons.
|
|
300
|
-
[HuspyIcons.
|
|
301
|
-
[HuspyIcons.
|
|
302
|
-
[HuspyIcons.
|
|
303
|
-
[HuspyIcons.
|
|
304
|
-
[HuspyIcons.
|
|
305
|
-
[HuspyIcons.
|
|
306
|
-
[HuspyIcons.
|
|
307
|
-
[HuspyIcons.
|
|
308
|
-
[HuspyIcons.
|
|
309
|
-
[HuspyIcons.
|
|
224
|
+
[HuspyIcons.StatusDot]: "61706",
|
|
225
|
+
[HuspyIcons.Size3d]: "61707",
|
|
226
|
+
[HuspyIcons.Share]: "61708",
|
|
227
|
+
[HuspyIcons.Search]: "61709",
|
|
228
|
+
[HuspyIcons.SearchX]: "61710",
|
|
229
|
+
[HuspyIcons.Sale]: "61711",
|
|
230
|
+
[HuspyIcons.Restaurant]: "61712",
|
|
231
|
+
[HuspyIcons.Rent]: "61713",
|
|
232
|
+
[HuspyIcons.PropertiesLinear]: "61714",
|
|
233
|
+
[HuspyIcons.PropertiesFilled]: "61715",
|
|
234
|
+
[HuspyIcons.Promotion]: "61716",
|
|
235
|
+
[HuspyIcons.Plus]: "61717",
|
|
236
|
+
[HuspyIcons.PinMapSolid]: "61718",
|
|
237
|
+
[HuspyIcons.PhoneLinear]: "61719",
|
|
238
|
+
[HuspyIcons.Pet]: "61720",
|
|
239
|
+
[HuspyIcons.PencilLine]: "61721",
|
|
240
|
+
[HuspyIcons.Payments]: "61722",
|
|
241
|
+
[HuspyIcons.Patio]: "61723",
|
|
242
|
+
[HuspyIcons.Parking]: "61724",
|
|
243
|
+
[HuspyIcons.Outside]: "61725",
|
|
244
|
+
[HuspyIcons.Notes]: "61726",
|
|
245
|
+
[HuspyIcons.Note]: "61727",
|
|
246
|
+
[HuspyIcons.Mortgage]: "61728",
|
|
247
|
+
[HuspyIcons.MoreHorizontal]: "61729",
|
|
248
|
+
[HuspyIcons.MapPin]: "61730",
|
|
249
|
+
[HuspyIcons.Mail]: "61731",
|
|
250
|
+
[HuspyIcons.MagicWand]: "61732",
|
|
251
|
+
[HuspyIcons.Logout]: "61733",
|
|
252
|
+
[HuspyIcons.Lock]: "61734",
|
|
253
|
+
[HuspyIcons.Lift]: "61735",
|
|
254
|
+
[HuspyIcons.LeadsLinear]: "61736",
|
|
255
|
+
[HuspyIcons.LeadsFilled]: "61737",
|
|
256
|
+
[HuspyIcons.Keys01]: "61738",
|
|
257
|
+
[HuspyIcons.Info]: "61739",
|
|
258
|
+
[HuspyIcons.Image]: "61740",
|
|
259
|
+
[HuspyIcons.ImageOff]: "61741",
|
|
260
|
+
[HuspyIcons.IconSlot]: "61742",
|
|
261
|
+
[HuspyIcons.HomeLinear]: "61743",
|
|
262
|
+
[HuspyIcons.HomeFilled]: "61744",
|
|
263
|
+
[HuspyIcons.History]: "61745",
|
|
264
|
+
[HuspyIcons.HelpCircle]: "61746",
|
|
265
|
+
[HuspyIcons.Heating]: "61747",
|
|
266
|
+
[HuspyIcons.GasHeating]: "61748",
|
|
267
|
+
[HuspyIcons.Garden]: "61749",
|
|
268
|
+
[HuspyIcons.Filter]: "61750",
|
|
269
|
+
[HuspyIcons.FileText]: "61751",
|
|
270
|
+
[HuspyIcons.FileSpreadsheet]: "61752",
|
|
271
|
+
[HuspyIcons.FileSignature]: "61753",
|
|
272
|
+
[HuspyIcons.FileLock]: "61754",
|
|
273
|
+
[HuspyIcons.FileKey]: "61755",
|
|
274
|
+
[HuspyIcons.FileInput]: "61756",
|
|
275
|
+
[HuspyIcons.FileCheck]: "61757",
|
|
276
|
+
[HuspyIcons.FaceIosLight]: "61758",
|
|
277
|
+
[HuspyIcons.FaceIosBold]: "61759",
|
|
278
|
+
[HuspyIcons.FaceAndroid]: "61760",
|
|
279
|
+
[HuspyIcons.EyeVisible]: "61761",
|
|
280
|
+
[HuspyIcons.EyeHidden]: "61762",
|
|
281
|
+
[HuspyIcons.ExploreLinear]: "61763",
|
|
282
|
+
[HuspyIcons.ExploreFilled]: "61764",
|
|
283
|
+
[HuspyIcons.Electric]: "61765",
|
|
284
|
+
[HuspyIcons.Edit]: "61766",
|
|
285
|
+
[HuspyIcons.DoorOpen]: "61767",
|
|
286
|
+
[HuspyIcons.Collections]: "61768",
|
|
287
|
+
[HuspyIcons.Closet]: "61769",
|
|
288
|
+
[HuspyIcons.CircleOff]: "61770",
|
|
289
|
+
[HuspyIcons.ChevronUp]: "61771",
|
|
290
|
+
[HuspyIcons.ChevronRight]: "61772",
|
|
291
|
+
[HuspyIcons.ChevronLeft]: "61773",
|
|
292
|
+
[HuspyIcons.ChevronDown]: "61774",
|
|
293
|
+
[HuspyIcons.Check]: "61775",
|
|
294
|
+
[HuspyIcons.CheckCircle2]: "61776",
|
|
295
|
+
[HuspyIcons.CheckCheck]: "61777",
|
|
296
|
+
[HuspyIcons.Cancel]: "61778",
|
|
297
|
+
[HuspyIcons.CancelCircleStroke]: "61779",
|
|
298
|
+
[HuspyIcons.CancelCircleSolid]: "61780",
|
|
299
|
+
[HuspyIcons.Calendar]: "61781",
|
|
300
|
+
[HuspyIcons.Building]: "61782",
|
|
301
|
+
[HuspyIcons.Bell]: "61783",
|
|
302
|
+
[HuspyIcons.BedDouble]: "61784",
|
|
303
|
+
[HuspyIcons.Bath]: "61785",
|
|
304
|
+
[HuspyIcons.BalconyWindow]: "61786",
|
|
305
|
+
[HuspyIcons.ArrowUp]: "61787",
|
|
306
|
+
[HuspyIcons.ArrowUpRight]: "61788",
|
|
307
|
+
[HuspyIcons.ArrowUpLeft]: "61789",
|
|
308
|
+
[HuspyIcons.ArrowUpDown]: "61790",
|
|
309
|
+
[HuspyIcons.ArrowRight]: "61791",
|
|
310
|
+
[HuspyIcons.ArrowLeft]: "61792",
|
|
311
|
+
[HuspyIcons.ArrowDown]: "61793",
|
|
312
|
+
[HuspyIcons.ArrowDownRight]: "61794",
|
|
313
|
+
[HuspyIcons.ArrowDownLeft]: "61795",
|
|
314
|
+
[HuspyIcons.Archive]: "61796",
|
|
315
|
+
[HuspyIcons.AlertTriangle]: "61797",
|
|
316
|
+
[HuspyIcons.AirConditioner]: "61798",
|
|
317
|
+
[HuspyIcons.AddNote]: "61799",
|
|
318
|
+
[HuspyIcons.Accessibility]: "61800",
|
|
310
319
|
};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/native/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { TextProps } from 'react-native';
|
|
|
4
4
|
/**
|
|
5
5
|
* Available icon names in the HuspyIcons font
|
|
6
6
|
*/
|
|
7
|
-
type IconName = 'whatsapp' | 'user' | 'trash-2' | 'touch-ios' | 'touch-android' | 'time' | 'thermometer-snowflake' | 'terrace' | 'swimming-pool' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-ios-light' | 'face-ios-bold' | 'face-android' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'electric' | 'edit' | 'door-open' | 'collections' | 'closet' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'check-check' | 'cancel' | 'cancel-circle-stroke' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'bath' | 'balcony-window' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'archive' | 'alert-triangle' | 'air-conditioner' | 'add-note' | 'accessibility';
|
|
7
|
+
type IconName = 'whatsapp' | 'user' | 'trash-2' | 'touch-ios' | 'touch-android' | 'time' | 'thermometer-snowflake' | 'terrace' | 'swimming-pool' | 'status-dot' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'history' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-ios-light' | 'face-ios-bold' | 'face-android' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'electric' | 'edit' | 'door-open' | 'collections' | 'closet' | 'circle-off' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'check-check' | 'cancel' | 'cancel-circle-stroke' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'bath' | 'balcony-window' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'archive' | 'alert-triangle' | 'air-conditioner' | 'add-note' | 'accessibility';
|
|
8
8
|
/**
|
|
9
9
|
* Mapping of icon names to unicode codepoints
|
|
10
10
|
* Used by the Icon component to render the correct glyph
|
package/dist/native/index.js
CHANGED
|
@@ -51,98 +51,101 @@ var glyphMap = {
|
|
|
51
51
|
"thermometer-snowflake": 61703,
|
|
52
52
|
"terrace": 61704,
|
|
53
53
|
"swimming-pool": 61705,
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"search
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"properties-
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"leads-
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"image
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"home-
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"file-
|
|
100
|
-
"file-
|
|
101
|
-
"file-
|
|
102
|
-
"file-
|
|
103
|
-
"file-
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"face-
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"chevron-
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"arrow-up
|
|
136
|
-
"arrow-right": 61788,
|
|
137
|
-
"arrow-left": 61789,
|
|
138
|
-
"arrow-down": 61790,
|
|
139
|
-
"arrow-
|
|
140
|
-
"arrow-
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
54
|
+
"status-dot": 61706,
|
|
55
|
+
"size-3d": 61707,
|
|
56
|
+
"share": 61708,
|
|
57
|
+
"search": 61709,
|
|
58
|
+
"search-x": 61710,
|
|
59
|
+
"sale": 61711,
|
|
60
|
+
"restaurant": 61712,
|
|
61
|
+
"rent": 61713,
|
|
62
|
+
"properties-linear": 61714,
|
|
63
|
+
"properties-filled": 61715,
|
|
64
|
+
"promotion": 61716,
|
|
65
|
+
"plus": 61717,
|
|
66
|
+
"pin_map_solid": 61718,
|
|
67
|
+
"phone-linear": 61719,
|
|
68
|
+
"pet": 61720,
|
|
69
|
+
"pencil-line": 61721,
|
|
70
|
+
"payments": 61722,
|
|
71
|
+
"patio": 61723,
|
|
72
|
+
"parking": 61724,
|
|
73
|
+
"outside": 61725,
|
|
74
|
+
"notes": 61726,
|
|
75
|
+
"note": 61727,
|
|
76
|
+
"mortgage": 61728,
|
|
77
|
+
"more-horizontal": 61729,
|
|
78
|
+
"map-pin": 61730,
|
|
79
|
+
"mail": 61731,
|
|
80
|
+
"magic-wand": 61732,
|
|
81
|
+
"logout": 61733,
|
|
82
|
+
"lock": 61734,
|
|
83
|
+
"lift": 61735,
|
|
84
|
+
"leads-linear": 61736,
|
|
85
|
+
"leads-filled": 61737,
|
|
86
|
+
"keys_01": 61738,
|
|
87
|
+
"info": 61739,
|
|
88
|
+
"image": 61740,
|
|
89
|
+
"image-off": 61741,
|
|
90
|
+
"icon-slot": 61742,
|
|
91
|
+
"home-linear": 61743,
|
|
92
|
+
"home-filled": 61744,
|
|
93
|
+
"history": 61745,
|
|
94
|
+
"help-circle": 61746,
|
|
95
|
+
"heating": 61747,
|
|
96
|
+
"gas-heating": 61748,
|
|
97
|
+
"garden": 61749,
|
|
98
|
+
"filter": 61750,
|
|
99
|
+
"file-text": 61751,
|
|
100
|
+
"file-spreadsheet": 61752,
|
|
101
|
+
"file-signature": 61753,
|
|
102
|
+
"file-lock": 61754,
|
|
103
|
+
"file-key": 61755,
|
|
104
|
+
"file-input": 61756,
|
|
105
|
+
"file-check": 61757,
|
|
106
|
+
"face-ios-light": 61758,
|
|
107
|
+
"face-ios-bold": 61759,
|
|
108
|
+
"face-android": 61760,
|
|
109
|
+
"eye-visible": 61761,
|
|
110
|
+
"eye-hidden": 61762,
|
|
111
|
+
"explore-linear": 61763,
|
|
112
|
+
"explore-filled": 61764,
|
|
113
|
+
"electric": 61765,
|
|
114
|
+
"edit": 61766,
|
|
115
|
+
"door-open": 61767,
|
|
116
|
+
"collections": 61768,
|
|
117
|
+
"closet": 61769,
|
|
118
|
+
"circle-off": 61770,
|
|
119
|
+
"chevron-up": 61771,
|
|
120
|
+
"chevron-right": 61772,
|
|
121
|
+
"chevron-left": 61773,
|
|
122
|
+
"chevron-down": 61774,
|
|
123
|
+
"check": 61775,
|
|
124
|
+
"check-circle-2": 61776,
|
|
125
|
+
"check-check": 61777,
|
|
126
|
+
"cancel": 61778,
|
|
127
|
+
"cancel-circle-stroke": 61779,
|
|
128
|
+
"cancel-circle-solid": 61780,
|
|
129
|
+
"calendar": 61781,
|
|
130
|
+
"building": 61782,
|
|
131
|
+
"bell": 61783,
|
|
132
|
+
"bed-double": 61784,
|
|
133
|
+
"bath": 61785,
|
|
134
|
+
"balcony-window": 61786,
|
|
135
|
+
"arrow-up": 61787,
|
|
136
|
+
"arrow-up-right": 61788,
|
|
137
|
+
"arrow-up-left": 61789,
|
|
138
|
+
"arrow-up-down": 61790,
|
|
139
|
+
"arrow-right": 61791,
|
|
140
|
+
"arrow-left": 61792,
|
|
141
|
+
"arrow-down": 61793,
|
|
142
|
+
"arrow-down-right": 61794,
|
|
143
|
+
"arrow-down-left": 61795,
|
|
144
|
+
"archive": 61796,
|
|
145
|
+
"alert-triangle": 61797,
|
|
146
|
+
"air-conditioner": 61798,
|
|
147
|
+
"add-note": 61799,
|
|
148
|
+
"accessibility": 61800
|
|
146
149
|
};
|
|
147
150
|
var fontFamily = "HuspyIcons";
|
|
148
151
|
|
package/dist/native/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/native/index.ts","../../src/native/Icon.tsx","../../src/native/glyphMap.ts"],"sourcesContent":["/**\n * Huspy Icons - React Native (Font-based)\n * \n * This package provides icon components for React Native using a custom font.\n * \n * @example\n * ```tsx\n * import { Icon } from 'huspy-icons/native';\n * \n * function MyComponent() {\n * return <Icon name=\"arrow-left\" size={24} color=\"#000\" />;\n * }\n * ```\n */\n\nexport { default as Icon } from './Icon';\nexport type { IconProps, IconName } from './Icon';\nexport { glyphMap, fontFamily } from './glyphMap';\n\n","import * as React from 'react';\nimport { Text, TextProps } from 'react-native';\nimport { glyphMap, fontFamily, IconName } from './glyphMap';\n\n/**\n * Props for the Icon component (React Native)\n */\nexport interface IconProps extends Omit<TextProps, 'children'> {\n /**\n * Name of the icon to display\n */\n name: IconName;\n\n /**\n * Size of the icon (default: 16)\n */\n size?: number;\n\n /**\n * Color of the icon (default: inherits from parent or 'black')\n */\n color?: string;\n}\n\n/**\n * Icon component for React Native\n *\n * Renders icons using a custom font (HuspyIcons)\n *\n * @example\n * ```tsx\n * <Icon name=\"arrow-left\" size={24} color=\"#000\" />\n * ```\n */\nconst Icon = ({ name, size = 16, color = '#000', style, ...props }: IconProps) => {\n const codepoint = glyphMap[name];\n\n if (!codepoint) {\n if (__DEV__) {\n console.warn(`Icon \"${name}\" not found in HuspyIcons font`);\n }\n return null;\n }\n\n // Convert codepoint to character\n const glyph = String.fromCharCode(codepoint);\n\n return (\n <Text\n {...props}\n style={[\n {\n fontFamily: fontFamily,\n fontSize: size,\n color: color,\n // Ensure icon doesn't inherit text styles\n fontWeight: 'normal',\n fontStyle: 'normal',\n // Prevent text selection and ensure proper rendering\n includeFontPadding: false, // Android: removes extra padding\n textAlignVertical: 'center', // Android: centers the glyph vertically\n },\n style,\n ]}\n // Accessibility\n accessible\n accessibilityLabel={props.accessibilityLabel || name}\n accessibilityRole=\"image\"\n >\n {glyph}\n </Text>\n );\n};\n\nexport default Icon;\nexport type { IconName };\n","// Auto-generated by generate-font.js - do not edit manually\n// Source: icons-src/*.svg → dist/fonts/HuspyIcons.*\n\n/**\n * Available icon names in the HuspyIcons font\n */\nexport type IconName = 'whatsapp' | 'user' | 'trash-2' | 'touch-ios' | 'touch-android' | 'time' | 'thermometer-snowflake' | 'terrace' | 'swimming-pool' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-ios-light' | 'face-ios-bold' | 'face-android' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'electric' | 'edit' | 'door-open' | 'collections' | 'closet' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'check-check' | 'cancel' | 'cancel-circle-stroke' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'bath' | 'balcony-window' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'archive' | 'alert-triangle' | 'air-conditioner' | 'add-note' | 'accessibility';\n\n/**\n * Mapping of icon names to unicode codepoints\n * Used by the Icon component to render the correct glyph\n */\nexport const glyphMap: Record<IconName, number> = {\n \"whatsapp\": 61697,\n \"user\": 61698,\n \"trash-2\": 61699,\n \"touch-ios\": 61700,\n \"touch-android\": 61701,\n \"time\": 61702,\n \"thermometer-snowflake\": 61703,\n \"terrace\": 61704,\n \"swimming-pool\": 61705,\n \"size-3d\":
|
|
1
|
+
{"version":3,"sources":["../../src/native/index.ts","../../src/native/Icon.tsx","../../src/native/glyphMap.ts"],"sourcesContent":["/**\n * Huspy Icons - React Native (Font-based)\n * \n * This package provides icon components for React Native using a custom font.\n * \n * @example\n * ```tsx\n * import { Icon } from 'huspy-icons/native';\n * \n * function MyComponent() {\n * return <Icon name=\"arrow-left\" size={24} color=\"#000\" />;\n * }\n * ```\n */\n\nexport { default as Icon } from './Icon';\nexport type { IconProps, IconName } from './Icon';\nexport { glyphMap, fontFamily } from './glyphMap';\n\n","import * as React from 'react';\nimport { Text, TextProps } from 'react-native';\nimport { glyphMap, fontFamily, IconName } from './glyphMap';\n\n/**\n * Props for the Icon component (React Native)\n */\nexport interface IconProps extends Omit<TextProps, 'children'> {\n /**\n * Name of the icon to display\n */\n name: IconName;\n\n /**\n * Size of the icon (default: 16)\n */\n size?: number;\n\n /**\n * Color of the icon (default: inherits from parent or 'black')\n */\n color?: string;\n}\n\n/**\n * Icon component for React Native\n *\n * Renders icons using a custom font (HuspyIcons)\n *\n * @example\n * ```tsx\n * <Icon name=\"arrow-left\" size={24} color=\"#000\" />\n * ```\n */\nconst Icon = ({ name, size = 16, color = '#000', style, ...props }: IconProps) => {\n const codepoint = glyphMap[name];\n\n if (!codepoint) {\n if (__DEV__) {\n console.warn(`Icon \"${name}\" not found in HuspyIcons font`);\n }\n return null;\n }\n\n // Convert codepoint to character\n const glyph = String.fromCharCode(codepoint);\n\n return (\n <Text\n {...props}\n style={[\n {\n fontFamily: fontFamily,\n fontSize: size,\n color: color,\n // Ensure icon doesn't inherit text styles\n fontWeight: 'normal',\n fontStyle: 'normal',\n // Prevent text selection and ensure proper rendering\n includeFontPadding: false, // Android: removes extra padding\n textAlignVertical: 'center', // Android: centers the glyph vertically\n },\n style,\n ]}\n // Accessibility\n accessible\n accessibilityLabel={props.accessibilityLabel || name}\n accessibilityRole=\"image\"\n >\n {glyph}\n </Text>\n );\n};\n\nexport default Icon;\nexport type { IconName };\n","// Auto-generated by generate-font.js - do not edit manually\n// Source: icons-src/*.svg → dist/fonts/HuspyIcons.*\n\n/**\n * Available icon names in the HuspyIcons font\n */\nexport type IconName = 'whatsapp' | 'user' | 'trash-2' | 'touch-ios' | 'touch-android' | 'time' | 'thermometer-snowflake' | 'terrace' | 'swimming-pool' | 'status-dot' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'history' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-ios-light' | 'face-ios-bold' | 'face-android' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'electric' | 'edit' | 'door-open' | 'collections' | 'closet' | 'circle-off' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'check-check' | 'cancel' | 'cancel-circle-stroke' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'bath' | 'balcony-window' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'archive' | 'alert-triangle' | 'air-conditioner' | 'add-note' | 'accessibility';\n\n/**\n * Mapping of icon names to unicode codepoints\n * Used by the Icon component to render the correct glyph\n */\nexport const glyphMap: Record<IconName, number> = {\n \"whatsapp\": 61697,\n \"user\": 61698,\n \"trash-2\": 61699,\n \"touch-ios\": 61700,\n \"touch-android\": 61701,\n \"time\": 61702,\n \"thermometer-snowflake\": 61703,\n \"terrace\": 61704,\n \"swimming-pool\": 61705,\n \"status-dot\": 61706,\n \"size-3d\": 61707,\n \"share\": 61708,\n \"search\": 61709,\n \"search-x\": 61710,\n \"sale\": 61711,\n \"restaurant\": 61712,\n \"rent\": 61713,\n \"properties-linear\": 61714,\n \"properties-filled\": 61715,\n \"promotion\": 61716,\n \"plus\": 61717,\n \"pin_map_solid\": 61718,\n \"phone-linear\": 61719,\n \"pet\": 61720,\n \"pencil-line\": 61721,\n \"payments\": 61722,\n \"patio\": 61723,\n \"parking\": 61724,\n \"outside\": 61725,\n \"notes\": 61726,\n \"note\": 61727,\n \"mortgage\": 61728,\n \"more-horizontal\": 61729,\n \"map-pin\": 61730,\n \"mail\": 61731,\n \"magic-wand\": 61732,\n \"logout\": 61733,\n \"lock\": 61734,\n \"lift\": 61735,\n \"leads-linear\": 61736,\n \"leads-filled\": 61737,\n \"keys_01\": 61738,\n \"info\": 61739,\n \"image\": 61740,\n \"image-off\": 61741,\n \"icon-slot\": 61742,\n \"home-linear\": 61743,\n \"home-filled\": 61744,\n \"history\": 61745,\n \"help-circle\": 61746,\n \"heating\": 61747,\n \"gas-heating\": 61748,\n \"garden\": 61749,\n \"filter\": 61750,\n \"file-text\": 61751,\n \"file-spreadsheet\": 61752,\n \"file-signature\": 61753,\n \"file-lock\": 61754,\n \"file-key\": 61755,\n \"file-input\": 61756,\n \"file-check\": 61757,\n \"face-ios-light\": 61758,\n \"face-ios-bold\": 61759,\n \"face-android\": 61760,\n \"eye-visible\": 61761,\n \"eye-hidden\": 61762,\n \"explore-linear\": 61763,\n \"explore-filled\": 61764,\n \"electric\": 61765,\n \"edit\": 61766,\n \"door-open\": 61767,\n \"collections\": 61768,\n \"closet\": 61769,\n \"circle-off\": 61770,\n \"chevron-up\": 61771,\n \"chevron-right\": 61772,\n \"chevron-left\": 61773,\n \"chevron-down\": 61774,\n \"check\": 61775,\n \"check-circle-2\": 61776,\n \"check-check\": 61777,\n \"cancel\": 61778,\n \"cancel-circle-stroke\": 61779,\n \"cancel-circle-solid\": 61780,\n \"calendar\": 61781,\n \"building\": 61782,\n \"bell\": 61783,\n \"bed-double\": 61784,\n \"bath\": 61785,\n \"balcony-window\": 61786,\n \"arrow-up\": 61787,\n \"arrow-up-right\": 61788,\n \"arrow-up-left\": 61789,\n \"arrow-up-down\": 61790,\n \"arrow-right\": 61791,\n \"arrow-left\": 61792,\n \"arrow-down\": 61793,\n \"arrow-down-right\": 61794,\n \"arrow-down-left\": 61795,\n \"archive\": 61796,\n \"alert-triangle\": 61797,\n \"air-conditioner\": 61798,\n \"add-note\": 61799,\n \"accessibility\": 61800\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":"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","names":[]}
|
package/dist/react/index.d.mts
CHANGED
|
@@ -88,6 +88,8 @@ declare const SvgChevronRight: ({ size, ...props }: ReactIconProps) => React$1.J
|
|
|
88
88
|
|
|
89
89
|
declare const SvgChevronUp: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
90
90
|
|
|
91
|
+
declare const SvgCircleOff: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
92
|
+
|
|
91
93
|
declare const SvgCloset: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
92
94
|
|
|
93
95
|
declare const SvgCollections: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
@@ -136,6 +138,8 @@ declare const SvgHeating: ({ size, ...props }: ReactIconProps) => React$1.JSX.El
|
|
|
136
138
|
|
|
137
139
|
declare const SvgHelpCircle: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
138
140
|
|
|
141
|
+
declare const SvgHistory: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
142
|
+
|
|
139
143
|
declare const SvgHomeFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
140
144
|
|
|
141
145
|
declare const SvgHomeLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
@@ -212,6 +216,8 @@ declare const SvgShare: ({ size, ...props }: ReactIconProps) => React$1.JSX.Elem
|
|
|
212
216
|
|
|
213
217
|
declare const SvgSize3D: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
214
218
|
|
|
219
|
+
declare const SvgStatusDot: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
220
|
+
|
|
215
221
|
declare const SvgSwimmingPool: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
216
222
|
|
|
217
223
|
declare const SvgTerrace: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
|
|
@@ -237,7 +243,7 @@ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
|
|
|
237
243
|
/**
|
|
238
244
|
* Available icon names
|
|
239
245
|
*/
|
|
240
|
-
type IconName = 'accessibility' | 'add-note' | 'air-conditioner' | 'alert-triangle' | 'archive' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'balcony-window' | 'bath' | 'bed-double' | 'bell' | 'building' | 'calendar' | 'cancel' | 'cancel-circle-solid' | 'cancel-circle-stroke' | 'check' | 'check-check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'closet' | 'collections' | 'door-open' | 'edit' | 'electric' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-android' | 'face-ios-bold' | 'face-ios-light' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'garden' | 'gas-heating' | 'heating' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'image' | 'image-off' | 'info' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lift' | 'lock' | 'logout' | 'magic-wand' | 'mail' | 'map-pin' | 'more-horizontal' | 'mortgage' | 'note' | 'notes' | 'outside' | 'parking' | 'patio' | 'payments' | 'pencil-line' | 'pet' | 'phone-linear' | 'pin-map-solid' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'restaurant' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'swimming-pool' | 'terrace' | 'thermometer-snowflake' | 'time' | 'touch-android' | 'touch-ios' | 'trash2' | 'user' | 'whatsapp';
|
|
246
|
+
type IconName = 'accessibility' | 'add-note' | 'air-conditioner' | 'alert-triangle' | 'archive' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'balcony-window' | 'bath' | 'bed-double' | 'bell' | 'building' | 'calendar' | 'cancel' | 'cancel-circle-solid' | 'cancel-circle-stroke' | 'check' | 'check-check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-off' | 'closet' | 'collections' | 'door-open' | 'edit' | 'electric' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-android' | 'face-ios-bold' | 'face-ios-light' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'garden' | 'gas-heating' | 'heating' | 'help-circle' | 'history' | 'home-filled' | 'home-linear' | 'icon-slot' | 'image' | 'image-off' | 'info' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lift' | 'lock' | 'logout' | 'magic-wand' | 'mail' | 'map-pin' | 'more-horizontal' | 'mortgage' | 'note' | 'notes' | 'outside' | 'parking' | 'patio' | 'payments' | 'pencil-line' | 'pet' | 'phone-linear' | 'pin-map-solid' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'restaurant' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'status-dot' | 'swimming-pool' | 'terrace' | 'thermometer-snowflake' | 'time' | 'touch-android' | 'touch-ios' | 'trash2' | 'user' | 'whatsapp';
|
|
241
247
|
/**
|
|
242
248
|
* Props for the unified Icon component
|
|
243
249
|
*/
|
|
@@ -252,4 +258,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
|
|
|
252
258
|
*/
|
|
253
259
|
declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
|
|
254
260
|
|
|
255
|
-
export { SvgAccessibility as Accessibility, SvgAddNote as AddNote, SvgAirConditioner as AirConditioner, SvgAlertTriangle as AlertTriangle, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpDown as ArrowUpDown, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgBalconyWindow as BalconyWindow, SvgBath as Bath, SvgBedDouble as BedDouble, SvgBell as Bell, SvgBuilding as Building, SvgCalendar as Calendar, SvgCancel as Cancel, SvgCancelCircleSolid as CancelCircleSolid, SvgCancelCircleStroke as CancelCircleStroke, SvgCheck as Check, SvgCheckCheck as CheckCheck, SvgCheckCircle2 as CheckCircle2, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgCloset as Closet, SvgCollections as Collections, SvgDoorOpen as DoorOpen, SvgEdit as Edit, SvgElectric as Electric, SvgExploreFilled as ExploreFilled, SvgExploreLinear as ExploreLinear, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgFaceAndroid as FaceAndroid, SvgFaceIosBold as FaceIosBold, SvgFaceIosLight as FaceIosLight, SvgFileCheck as FileCheck, SvgFileInput as FileInput, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSignature as FileSignature, SvgFileSpreadsheet as FileSpreadsheet, SvgFileText as FileText, SvgFilter as Filter, SvgGarden as Garden, SvgGasHeating as GasHeating, SvgHeating as Heating, SvgHelpCircle as HelpCircle, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgImage as Image, SvgImageOff as ImageOff, SvgInfo as Info, SvgKeys01 as Keys01, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgLift as Lift, SvgLock as Lock, SvgLogout as Logout, SvgMagicWand as MagicWand, SvgMail as Mail, SvgMapPin as MapPin, SvgMoreHorizontal as MoreHorizontal, SvgMortgage as Mortgage, SvgNote as Note, SvgNotes as Notes, SvgOutside as Outside, SvgParking as Parking, SvgPatio as Patio, SvgPayments as Payments, SvgPencilLine as PencilLine, SvgPet as Pet, SvgPhoneLinear as PhoneLinear, SvgPinMapSolid as PinMapSolid, SvgPlus as Plus, SvgPromotion as Promotion, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgRestaurant as Restaurant, SvgSale as Sale, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgSize3D as Size3D, SvgSwimmingPool as SwimmingPool, SvgTerrace as Terrace, SvgThermometerSnowflake as ThermometerSnowflake, SvgTime as Time, SvgTouchAndroid as TouchAndroid, SvgTouchIos as TouchIos, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
|
|
261
|
+
export { SvgAccessibility as Accessibility, SvgAddNote as AddNote, SvgAirConditioner as AirConditioner, SvgAlertTriangle as AlertTriangle, SvgArchive as Archive, SvgArrowDown as ArrowDown, SvgArrowDownLeft as ArrowDownLeft, SvgArrowDownRight as ArrowDownRight, SvgArrowLeft as ArrowLeft, SvgArrowRight as ArrowRight, SvgArrowUp as ArrowUp, SvgArrowUpDown as ArrowUpDown, SvgArrowUpLeft as ArrowUpLeft, SvgArrowUpRight as ArrowUpRight, SvgBalconyWindow as BalconyWindow, SvgBath as Bath, SvgBedDouble as BedDouble, SvgBell as Bell, SvgBuilding as Building, SvgCalendar as Calendar, SvgCancel as Cancel, SvgCancelCircleSolid as CancelCircleSolid, SvgCancelCircleStroke as CancelCircleStroke, SvgCheck as Check, SvgCheckCheck as CheckCheck, SvgCheckCircle2 as CheckCircle2, SvgChevronDown as ChevronDown, SvgChevronLeft as ChevronLeft, SvgChevronRight as ChevronRight, SvgChevronUp as ChevronUp, SvgCircleOff as CircleOff, SvgCloset as Closet, SvgCollections as Collections, SvgDoorOpen as DoorOpen, SvgEdit as Edit, SvgElectric as Electric, SvgExploreFilled as ExploreFilled, SvgExploreLinear as ExploreLinear, SvgEyeHidden as EyeHidden, SvgEyeVisible as EyeVisible, SvgFaceAndroid as FaceAndroid, SvgFaceIosBold as FaceIosBold, SvgFaceIosLight as FaceIosLight, SvgFileCheck as FileCheck, SvgFileInput as FileInput, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSignature as FileSignature, SvgFileSpreadsheet as FileSpreadsheet, SvgFileText as FileText, SvgFilter as Filter, SvgGarden as Garden, SvgGasHeating as GasHeating, SvgHeating as Heating, SvgHelpCircle as HelpCircle, SvgHistory as History, SvgHomeFilled as HomeFilled, SvgHomeLinear as HomeLinear, ICON_SIZES, Icon, type IconName, type IconProps, type IconSize, type IconSizeToken, SvgIconSlot as IconSlot, SvgImage as Image, SvgImageOff as ImageOff, SvgInfo as Info, SvgKeys01 as Keys01, SvgLeadsFilled as LeadsFilled, SvgLeadsLinear as LeadsLinear, SvgLift as Lift, SvgLock as Lock, SvgLogout as Logout, SvgMagicWand as MagicWand, SvgMail as Mail, SvgMapPin as MapPin, SvgMoreHorizontal as MoreHorizontal, SvgMortgage as Mortgage, SvgNote as Note, SvgNotes as Notes, SvgOutside as Outside, SvgParking as Parking, SvgPatio as Patio, SvgPayments as Payments, SvgPencilLine as PencilLine, SvgPet as Pet, SvgPhoneLinear as PhoneLinear, SvgPinMapSolid as PinMapSolid, SvgPlus as Plus, SvgPromotion as Promotion, SvgPropertiesFilled as PropertiesFilled, SvgPropertiesLinear as PropertiesLinear, type ReactIconProps, SvgRent as Rent, SvgRestaurant as Restaurant, SvgSale as Sale, SvgSearch as Search, SvgSearchX as SearchX, SvgShare as Share, SvgSize3D as Size3D, SvgStatusDot as StatusDot, SvgSwimmingPool as SwimmingPool, SvgTerrace as Terrace, SvgThermometerSnowflake as ThermometerSnowflake, SvgTime as Time, SvgTouchAndroid as TouchAndroid, SvgTouchIos as TouchIos, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
|