huspy-icons 0.3.8 → 0.3.10

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.
@@ -2,6 +2,8 @@ export type HuspyIconsId =
2
2
  | "whatsapp"
3
3
  | "user"
4
4
  | "trash-2"
5
+ | "touch-ios"
6
+ | "touch-android"
5
7
  | "time"
6
8
  | "thermometer-snowflake"
7
9
  | "terrace"
@@ -44,11 +46,11 @@ export type HuspyIconsId =
44
46
  | "icon-slot"
45
47
  | "home-linear"
46
48
  | "home-filled"
49
+ | "history"
47
50
  | "help-circle"
48
51
  | "heating"
49
52
  | "gas-heating"
50
53
  | "garden"
51
- | "fingerprint-android"
52
54
  | "filter"
53
55
  | "file-text"
54
56
  | "file-spreadsheet"
@@ -57,7 +59,9 @@ export type HuspyIconsId =
57
59
  | "file-key"
58
60
  | "file-input"
59
61
  | "file-check"
60
- | "face-id"
62
+ | "face-ios-light"
63
+ | "face-ios-bold"
64
+ | "face-android"
61
65
  | "eye-visible"
62
66
  | "eye-hidden"
63
67
  | "explore-linear"
@@ -102,6 +106,8 @@ export enum HuspyIcons {
102
106
  Whatsapp = "whatsapp",
103
107
  User = "user",
104
108
  Trash2 = "trash-2",
109
+ TouchIos = "touch-ios",
110
+ TouchAndroid = "touch-android",
105
111
  Time = "time",
106
112
  ThermometerSnowflake = "thermometer-snowflake",
107
113
  Terrace = "terrace",
@@ -144,11 +150,11 @@ export enum HuspyIcons {
144
150
  IconSlot = "icon-slot",
145
151
  HomeLinear = "home-linear",
146
152
  HomeFilled = "home-filled",
153
+ History = "history",
147
154
  HelpCircle = "help-circle",
148
155
  Heating = "heating",
149
156
  GasHeating = "gas-heating",
150
157
  Garden = "garden",
151
- FingerprintAndroid = "fingerprint-android",
152
158
  Filter = "filter",
153
159
  FileText = "file-text",
154
160
  FileSpreadsheet = "file-spreadsheet",
@@ -157,7 +163,9 @@ export enum HuspyIcons {
157
163
  FileKey = "file-key",
158
164
  FileInput = "file-input",
159
165
  FileCheck = "file-check",
160
- FaceId = "face-id",
166
+ FaceIosLight = "face-ios-light",
167
+ FaceIosBold = "face-ios-bold",
168
+ FaceAndroid = "face-android",
161
169
  EyeVisible = "eye-visible",
162
170
  EyeHidden = "eye-hidden",
163
171
  ExploreLinear = "explore-linear",
@@ -203,99 +211,103 @@ export const HUSPY_ICONS_CODEPOINTS: { [key in HuspyIcons]: string } = {
203
211
  [HuspyIcons.Whatsapp]: "61697",
204
212
  [HuspyIcons.User]: "61698",
205
213
  [HuspyIcons.Trash2]: "61699",
206
- [HuspyIcons.Time]: "61700",
207
- [HuspyIcons.ThermometerSnowflake]: "61701",
208
- [HuspyIcons.Terrace]: "61702",
209
- [HuspyIcons.SwimmingPool]: "61703",
210
- [HuspyIcons.Size3d]: "61704",
211
- [HuspyIcons.Share]: "61705",
212
- [HuspyIcons.Search]: "61706",
213
- [HuspyIcons.SearchX]: "61707",
214
- [HuspyIcons.Sale]: "61708",
215
- [HuspyIcons.Restaurant]: "61709",
216
- [HuspyIcons.Rent]: "61710",
217
- [HuspyIcons.PropertiesLinear]: "61711",
218
- [HuspyIcons.PropertiesFilled]: "61712",
219
- [HuspyIcons.Promotion]: "61713",
220
- [HuspyIcons.Plus]: "61714",
221
- [HuspyIcons.PinMapSolid]: "61715",
222
- [HuspyIcons.PhoneLinear]: "61716",
223
- [HuspyIcons.Pet]: "61717",
224
- [HuspyIcons.PencilLine]: "61718",
225
- [HuspyIcons.Payments]: "61719",
226
- [HuspyIcons.Patio]: "61720",
227
- [HuspyIcons.Parking]: "61721",
228
- [HuspyIcons.Outside]: "61722",
229
- [HuspyIcons.Notes]: "61723",
230
- [HuspyIcons.Note]: "61724",
231
- [HuspyIcons.Mortgage]: "61725",
232
- [HuspyIcons.MoreHorizontal]: "61726",
233
- [HuspyIcons.MapPin]: "61727",
234
- [HuspyIcons.Mail]: "61728",
235
- [HuspyIcons.MagicWand]: "61729",
236
- [HuspyIcons.Logout]: "61730",
237
- [HuspyIcons.Lock]: "61731",
238
- [HuspyIcons.Lift]: "61732",
239
- [HuspyIcons.LeadsLinear]: "61733",
240
- [HuspyIcons.LeadsFilled]: "61734",
241
- [HuspyIcons.Keys01]: "61735",
242
- [HuspyIcons.Info]: "61736",
243
- [HuspyIcons.Image]: "61737",
244
- [HuspyIcons.ImageOff]: "61738",
245
- [HuspyIcons.IconSlot]: "61739",
246
- [HuspyIcons.HomeLinear]: "61740",
247
- [HuspyIcons.HomeFilled]: "61741",
248
- [HuspyIcons.HelpCircle]: "61742",
249
- [HuspyIcons.Heating]: "61743",
250
- [HuspyIcons.GasHeating]: "61744",
251
- [HuspyIcons.Garden]: "61745",
252
- [HuspyIcons.FingerprintAndroid]: "61746",
253
- [HuspyIcons.Filter]: "61747",
254
- [HuspyIcons.FileText]: "61748",
255
- [HuspyIcons.FileSpreadsheet]: "61749",
256
- [HuspyIcons.FileSignature]: "61750",
257
- [HuspyIcons.FileLock]: "61751",
258
- [HuspyIcons.FileKey]: "61752",
259
- [HuspyIcons.FileInput]: "61753",
260
- [HuspyIcons.FileCheck]: "61754",
261
- [HuspyIcons.FaceId]: "61755",
262
- [HuspyIcons.EyeVisible]: "61756",
263
- [HuspyIcons.EyeHidden]: "61757",
264
- [HuspyIcons.ExploreLinear]: "61758",
265
- [HuspyIcons.ExploreFilled]: "61759",
266
- [HuspyIcons.Electric]: "61760",
267
- [HuspyIcons.Edit]: "61761",
268
- [HuspyIcons.DoorOpen]: "61762",
269
- [HuspyIcons.Collections]: "61763",
270
- [HuspyIcons.Closet]: "61764",
271
- [HuspyIcons.ChevronUp]: "61765",
272
- [HuspyIcons.ChevronRight]: "61766",
273
- [HuspyIcons.ChevronLeft]: "61767",
274
- [HuspyIcons.ChevronDown]: "61768",
275
- [HuspyIcons.Check]: "61769",
276
- [HuspyIcons.CheckCircle2]: "61770",
277
- [HuspyIcons.CheckCheck]: "61771",
278
- [HuspyIcons.Cancel]: "61772",
279
- [HuspyIcons.CancelCircleStroke]: "61773",
280
- [HuspyIcons.CancelCircleSolid]: "61774",
281
- [HuspyIcons.Calendar]: "61775",
282
- [HuspyIcons.Building]: "61776",
283
- [HuspyIcons.Bell]: "61777",
284
- [HuspyIcons.BedDouble]: "61778",
285
- [HuspyIcons.Bath]: "61779",
286
- [HuspyIcons.BalconyWindow]: "61780",
287
- [HuspyIcons.ArrowUp]: "61781",
288
- [HuspyIcons.ArrowUpRight]: "61782",
289
- [HuspyIcons.ArrowUpLeft]: "61783",
290
- [HuspyIcons.ArrowUpDown]: "61784",
291
- [HuspyIcons.ArrowRight]: "61785",
292
- [HuspyIcons.ArrowLeft]: "61786",
293
- [HuspyIcons.ArrowDown]: "61787",
294
- [HuspyIcons.ArrowDownRight]: "61788",
295
- [HuspyIcons.ArrowDownLeft]: "61789",
296
- [HuspyIcons.Archive]: "61790",
297
- [HuspyIcons.AlertTriangle]: "61791",
298
- [HuspyIcons.AirConditioner]: "61792",
299
- [HuspyIcons.AddNote]: "61793",
300
- [HuspyIcons.Accessibility]: "61794",
214
+ [HuspyIcons.TouchIos]: "61700",
215
+ [HuspyIcons.TouchAndroid]: "61701",
216
+ [HuspyIcons.Time]: "61702",
217
+ [HuspyIcons.ThermometerSnowflake]: "61703",
218
+ [HuspyIcons.Terrace]: "61704",
219
+ [HuspyIcons.SwimmingPool]: "61705",
220
+ [HuspyIcons.Size3d]: "61706",
221
+ [HuspyIcons.Share]: "61707",
222
+ [HuspyIcons.Search]: "61708",
223
+ [HuspyIcons.SearchX]: "61709",
224
+ [HuspyIcons.Sale]: "61710",
225
+ [HuspyIcons.Restaurant]: "61711",
226
+ [HuspyIcons.Rent]: "61712",
227
+ [HuspyIcons.PropertiesLinear]: "61713",
228
+ [HuspyIcons.PropertiesFilled]: "61714",
229
+ [HuspyIcons.Promotion]: "61715",
230
+ [HuspyIcons.Plus]: "61716",
231
+ [HuspyIcons.PinMapSolid]: "61717",
232
+ [HuspyIcons.PhoneLinear]: "61718",
233
+ [HuspyIcons.Pet]: "61719",
234
+ [HuspyIcons.PencilLine]: "61720",
235
+ [HuspyIcons.Payments]: "61721",
236
+ [HuspyIcons.Patio]: "61722",
237
+ [HuspyIcons.Parking]: "61723",
238
+ [HuspyIcons.Outside]: "61724",
239
+ [HuspyIcons.Notes]: "61725",
240
+ [HuspyIcons.Note]: "61726",
241
+ [HuspyIcons.Mortgage]: "61727",
242
+ [HuspyIcons.MoreHorizontal]: "61728",
243
+ [HuspyIcons.MapPin]: "61729",
244
+ [HuspyIcons.Mail]: "61730",
245
+ [HuspyIcons.MagicWand]: "61731",
246
+ [HuspyIcons.Logout]: "61732",
247
+ [HuspyIcons.Lock]: "61733",
248
+ [HuspyIcons.Lift]: "61734",
249
+ [HuspyIcons.LeadsLinear]: "61735",
250
+ [HuspyIcons.LeadsFilled]: "61736",
251
+ [HuspyIcons.Keys01]: "61737",
252
+ [HuspyIcons.Info]: "61738",
253
+ [HuspyIcons.Image]: "61739",
254
+ [HuspyIcons.ImageOff]: "61740",
255
+ [HuspyIcons.IconSlot]: "61741",
256
+ [HuspyIcons.HomeLinear]: "61742",
257
+ [HuspyIcons.HomeFilled]: "61743",
258
+ [HuspyIcons.History]: "61744",
259
+ [HuspyIcons.HelpCircle]: "61745",
260
+ [HuspyIcons.Heating]: "61746",
261
+ [HuspyIcons.GasHeating]: "61747",
262
+ [HuspyIcons.Garden]: "61748",
263
+ [HuspyIcons.Filter]: "61749",
264
+ [HuspyIcons.FileText]: "61750",
265
+ [HuspyIcons.FileSpreadsheet]: "61751",
266
+ [HuspyIcons.FileSignature]: "61752",
267
+ [HuspyIcons.FileLock]: "61753",
268
+ [HuspyIcons.FileKey]: "61754",
269
+ [HuspyIcons.FileInput]: "61755",
270
+ [HuspyIcons.FileCheck]: "61756",
271
+ [HuspyIcons.FaceIosLight]: "61757",
272
+ [HuspyIcons.FaceIosBold]: "61758",
273
+ [HuspyIcons.FaceAndroid]: "61759",
274
+ [HuspyIcons.EyeVisible]: "61760",
275
+ [HuspyIcons.EyeHidden]: "61761",
276
+ [HuspyIcons.ExploreLinear]: "61762",
277
+ [HuspyIcons.ExploreFilled]: "61763",
278
+ [HuspyIcons.Electric]: "61764",
279
+ [HuspyIcons.Edit]: "61765",
280
+ [HuspyIcons.DoorOpen]: "61766",
281
+ [HuspyIcons.Collections]: "61767",
282
+ [HuspyIcons.Closet]: "61768",
283
+ [HuspyIcons.ChevronUp]: "61769",
284
+ [HuspyIcons.ChevronRight]: "61770",
285
+ [HuspyIcons.ChevronLeft]: "61771",
286
+ [HuspyIcons.ChevronDown]: "61772",
287
+ [HuspyIcons.Check]: "61773",
288
+ [HuspyIcons.CheckCircle2]: "61774",
289
+ [HuspyIcons.CheckCheck]: "61775",
290
+ [HuspyIcons.Cancel]: "61776",
291
+ [HuspyIcons.CancelCircleStroke]: "61777",
292
+ [HuspyIcons.CancelCircleSolid]: "61778",
293
+ [HuspyIcons.Calendar]: "61779",
294
+ [HuspyIcons.Building]: "61780",
295
+ [HuspyIcons.Bell]: "61781",
296
+ [HuspyIcons.BedDouble]: "61782",
297
+ [HuspyIcons.Bath]: "61783",
298
+ [HuspyIcons.BalconyWindow]: "61784",
299
+ [HuspyIcons.ArrowUp]: "61785",
300
+ [HuspyIcons.ArrowUpRight]: "61786",
301
+ [HuspyIcons.ArrowUpLeft]: "61787",
302
+ [HuspyIcons.ArrowUpDown]: "61788",
303
+ [HuspyIcons.ArrowRight]: "61789",
304
+ [HuspyIcons.ArrowLeft]: "61790",
305
+ [HuspyIcons.ArrowDown]: "61791",
306
+ [HuspyIcons.ArrowDownRight]: "61792",
307
+ [HuspyIcons.ArrowDownLeft]: "61793",
308
+ [HuspyIcons.Archive]: "61794",
309
+ [HuspyIcons.AlertTriangle]: "61795",
310
+ [HuspyIcons.AirConditioner]: "61796",
311
+ [HuspyIcons.AddNote]: "61797",
312
+ [HuspyIcons.Accessibility]: "61798",
301
313
  };
Binary file
Binary file
Binary file
@@ -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' | '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' | 'fingerprint-android' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-id' | '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' | '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' | '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
@@ -45,101 +45,105 @@ var glyphMap = {
45
45
  "whatsapp": 61697,
46
46
  "user": 61698,
47
47
  "trash-2": 61699,
48
- "time": 61700,
49
- "thermometer-snowflake": 61701,
50
- "terrace": 61702,
51
- "swimming-pool": 61703,
52
- "size-3d": 61704,
53
- "share": 61705,
54
- "search": 61706,
55
- "search-x": 61707,
56
- "sale": 61708,
57
- "restaurant": 61709,
58
- "rent": 61710,
59
- "properties-linear": 61711,
60
- "properties-filled": 61712,
61
- "promotion": 61713,
62
- "plus": 61714,
63
- "pin_map_solid": 61715,
64
- "phone-linear": 61716,
65
- "pet": 61717,
66
- "pencil-line": 61718,
67
- "payments": 61719,
68
- "patio": 61720,
69
- "parking": 61721,
70
- "outside": 61722,
71
- "notes": 61723,
72
- "note": 61724,
73
- "mortgage": 61725,
74
- "more-horizontal": 61726,
75
- "map-pin": 61727,
76
- "mail": 61728,
77
- "magic-wand": 61729,
78
- "logout": 61730,
79
- "lock": 61731,
80
- "lift": 61732,
81
- "leads-linear": 61733,
82
- "leads-filled": 61734,
83
- "keys_01": 61735,
84
- "info": 61736,
85
- "image": 61737,
86
- "image-off": 61738,
87
- "icon-slot": 61739,
88
- "home-linear": 61740,
89
- "home-filled": 61741,
90
- "help-circle": 61742,
91
- "heating": 61743,
92
- "gas-heating": 61744,
93
- "garden": 61745,
94
- "fingerprint-android": 61746,
95
- "filter": 61747,
96
- "file-text": 61748,
97
- "file-spreadsheet": 61749,
98
- "file-signature": 61750,
99
- "file-lock": 61751,
100
- "file-key": 61752,
101
- "file-input": 61753,
102
- "file-check": 61754,
103
- "face-id": 61755,
104
- "eye-visible": 61756,
105
- "eye-hidden": 61757,
106
- "explore-linear": 61758,
107
- "explore-filled": 61759,
108
- "electric": 61760,
109
- "edit": 61761,
110
- "door-open": 61762,
111
- "collections": 61763,
112
- "closet": 61764,
113
- "chevron-up": 61765,
114
- "chevron-right": 61766,
115
- "chevron-left": 61767,
116
- "chevron-down": 61768,
117
- "check": 61769,
118
- "check-circle-2": 61770,
119
- "check-check": 61771,
120
- "cancel": 61772,
121
- "cancel-circle-stroke": 61773,
122
- "cancel-circle-solid": 61774,
123
- "calendar": 61775,
124
- "building": 61776,
125
- "bell": 61777,
126
- "bed-double": 61778,
127
- "bath": 61779,
128
- "balcony-window": 61780,
129
- "arrow-up": 61781,
130
- "arrow-up-right": 61782,
131
- "arrow-up-left": 61783,
132
- "arrow-up-down": 61784,
133
- "arrow-right": 61785,
134
- "arrow-left": 61786,
135
- "arrow-down": 61787,
136
- "arrow-down-right": 61788,
137
- "arrow-down-left": 61789,
138
- "archive": 61790,
139
- "alert-triangle": 61791,
140
- "air-conditioner": 61792,
141
- "add-note": 61793,
142
- "accessibility": 61794
48
+ "touch-ios": 61700,
49
+ "touch-android": 61701,
50
+ "time": 61702,
51
+ "thermometer-snowflake": 61703,
52
+ "terrace": 61704,
53
+ "swimming-pool": 61705,
54
+ "size-3d": 61706,
55
+ "share": 61707,
56
+ "search": 61708,
57
+ "search-x": 61709,
58
+ "sale": 61710,
59
+ "restaurant": 61711,
60
+ "rent": 61712,
61
+ "properties-linear": 61713,
62
+ "properties-filled": 61714,
63
+ "promotion": 61715,
64
+ "plus": 61716,
65
+ "pin_map_solid": 61717,
66
+ "phone-linear": 61718,
67
+ "pet": 61719,
68
+ "pencil-line": 61720,
69
+ "payments": 61721,
70
+ "patio": 61722,
71
+ "parking": 61723,
72
+ "outside": 61724,
73
+ "notes": 61725,
74
+ "note": 61726,
75
+ "mortgage": 61727,
76
+ "more-horizontal": 61728,
77
+ "map-pin": 61729,
78
+ "mail": 61730,
79
+ "magic-wand": 61731,
80
+ "logout": 61732,
81
+ "lock": 61733,
82
+ "lift": 61734,
83
+ "leads-linear": 61735,
84
+ "leads-filled": 61736,
85
+ "keys_01": 61737,
86
+ "info": 61738,
87
+ "image": 61739,
88
+ "image-off": 61740,
89
+ "icon-slot": 61741,
90
+ "home-linear": 61742,
91
+ "home-filled": 61743,
92
+ "history": 61744,
93
+ "help-circle": 61745,
94
+ "heating": 61746,
95
+ "gas-heating": 61747,
96
+ "garden": 61748,
97
+ "filter": 61749,
98
+ "file-text": 61750,
99
+ "file-spreadsheet": 61751,
100
+ "file-signature": 61752,
101
+ "file-lock": 61753,
102
+ "file-key": 61754,
103
+ "file-input": 61755,
104
+ "file-check": 61756,
105
+ "face-ios-light": 61757,
106
+ "face-ios-bold": 61758,
107
+ "face-android": 61759,
108
+ "eye-visible": 61760,
109
+ "eye-hidden": 61761,
110
+ "explore-linear": 61762,
111
+ "explore-filled": 61763,
112
+ "electric": 61764,
113
+ "edit": 61765,
114
+ "door-open": 61766,
115
+ "collections": 61767,
116
+ "closet": 61768,
117
+ "chevron-up": 61769,
118
+ "chevron-right": 61770,
119
+ "chevron-left": 61771,
120
+ "chevron-down": 61772,
121
+ "check": 61773,
122
+ "check-circle-2": 61774,
123
+ "check-check": 61775,
124
+ "cancel": 61776,
125
+ "cancel-circle-stroke": 61777,
126
+ "cancel-circle-solid": 61778,
127
+ "calendar": 61779,
128
+ "building": 61780,
129
+ "bell": 61781,
130
+ "bed-double": 61782,
131
+ "bath": 61783,
132
+ "balcony-window": 61784,
133
+ "arrow-up": 61785,
134
+ "arrow-up-right": 61786,
135
+ "arrow-up-left": 61787,
136
+ "arrow-up-down": 61788,
137
+ "arrow-right": 61789,
138
+ "arrow-left": 61790,
139
+ "arrow-down": 61791,
140
+ "arrow-down-right": 61792,
141
+ "arrow-down-left": 61793,
142
+ "archive": 61794,
143
+ "alert-triangle": 61795,
144
+ "air-conditioner": 61796,
145
+ "add-note": 61797,
146
+ "accessibility": 61798
143
147
  };
144
148
  var fontFamily = "HuspyIcons";
145
149
 
@@ -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' | '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' | 'fingerprint-android' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-id' | '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 \"time\": 61700,\n \"thermometer-snowflake\": 61701,\n \"terrace\": 61702,\n \"swimming-pool\": 61703,\n \"size-3d\": 61704,\n \"share\": 61705,\n \"search\": 61706,\n \"search-x\": 61707,\n \"sale\": 61708,\n \"restaurant\": 61709,\n \"rent\": 61710,\n \"properties-linear\": 61711,\n \"properties-filled\": 61712,\n \"promotion\": 61713,\n \"plus\": 61714,\n \"pin_map_solid\": 61715,\n \"phone-linear\": 61716,\n \"pet\": 61717,\n \"pencil-line\": 61718,\n \"payments\": 61719,\n \"patio\": 61720,\n \"parking\": 61721,\n \"outside\": 61722,\n \"notes\": 61723,\n \"note\": 61724,\n \"mortgage\": 61725,\n \"more-horizontal\": 61726,\n \"map-pin\": 61727,\n \"mail\": 61728,\n \"magic-wand\": 61729,\n \"logout\": 61730,\n \"lock\": 61731,\n \"lift\": 61732,\n \"leads-linear\": 61733,\n \"leads-filled\": 61734,\n \"keys_01\": 61735,\n \"info\": 61736,\n \"image\": 61737,\n \"image-off\": 61738,\n \"icon-slot\": 61739,\n \"home-linear\": 61740,\n \"home-filled\": 61741,\n \"help-circle\": 61742,\n \"heating\": 61743,\n \"gas-heating\": 61744,\n \"garden\": 61745,\n \"fingerprint-android\": 61746,\n \"filter\": 61747,\n \"file-text\": 61748,\n \"file-spreadsheet\": 61749,\n \"file-signature\": 61750,\n \"file-lock\": 61751,\n \"file-key\": 61752,\n \"file-input\": 61753,\n \"file-check\": 61754,\n \"face-id\": 61755,\n \"eye-visible\": 61756,\n \"eye-hidden\": 61757,\n \"explore-linear\": 61758,\n \"explore-filled\": 61759,\n \"electric\": 61760,\n \"edit\": 61761,\n \"door-open\": 61762,\n \"collections\": 61763,\n \"closet\": 61764,\n \"chevron-up\": 61765,\n \"chevron-right\": 61766,\n \"chevron-left\": 61767,\n \"chevron-down\": 61768,\n \"check\": 61769,\n \"check-circle-2\": 61770,\n \"check-check\": 61771,\n \"cancel\": 61772,\n \"cancel-circle-stroke\": 61773,\n \"cancel-circle-solid\": 61774,\n \"calendar\": 61775,\n \"building\": 61776,\n \"bell\": 61777,\n \"bed-double\": 61778,\n \"bath\": 61779,\n \"balcony-window\": 61780,\n \"arrow-up\": 61781,\n \"arrow-up-right\": 61782,\n \"arrow-up-left\": 61783,\n \"arrow-up-down\": 61784,\n \"arrow-right\": 61785,\n \"arrow-left\": 61786,\n \"arrow-down\": 61787,\n \"arrow-down-right\": 61788,\n \"arrow-down-left\": 61789,\n \"archive\": 61790,\n \"alert-triangle\": 61791,\n \"air-conditioner\": 61792,\n \"add-note\": 61793,\n \"accessibility\": 61794\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":"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","names":[]}
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' | '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' | '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\": 61706,\n \"share\": 61707,\n \"search\": 61708,\n \"search-x\": 61709,\n \"sale\": 61710,\n \"restaurant\": 61711,\n \"rent\": 61712,\n \"properties-linear\": 61713,\n \"properties-filled\": 61714,\n \"promotion\": 61715,\n \"plus\": 61716,\n \"pin_map_solid\": 61717,\n \"phone-linear\": 61718,\n \"pet\": 61719,\n \"pencil-line\": 61720,\n \"payments\": 61721,\n \"patio\": 61722,\n \"parking\": 61723,\n \"outside\": 61724,\n \"notes\": 61725,\n \"note\": 61726,\n \"mortgage\": 61727,\n \"more-horizontal\": 61728,\n \"map-pin\": 61729,\n \"mail\": 61730,\n \"magic-wand\": 61731,\n \"logout\": 61732,\n \"lock\": 61733,\n \"lift\": 61734,\n \"leads-linear\": 61735,\n \"leads-filled\": 61736,\n \"keys_01\": 61737,\n \"info\": 61738,\n \"image\": 61739,\n \"image-off\": 61740,\n \"icon-slot\": 61741,\n \"home-linear\": 61742,\n \"home-filled\": 61743,\n \"history\": 61744,\n \"help-circle\": 61745,\n \"heating\": 61746,\n \"gas-heating\": 61747,\n \"garden\": 61748,\n \"filter\": 61749,\n \"file-text\": 61750,\n \"file-spreadsheet\": 61751,\n \"file-signature\": 61752,\n \"file-lock\": 61753,\n \"file-key\": 61754,\n \"file-input\": 61755,\n \"file-check\": 61756,\n \"face-ios-light\": 61757,\n \"face-ios-bold\": 61758,\n \"face-android\": 61759,\n \"eye-visible\": 61760,\n \"eye-hidden\": 61761,\n \"explore-linear\": 61762,\n \"explore-filled\": 61763,\n \"electric\": 61764,\n \"edit\": 61765,\n \"door-open\": 61766,\n \"collections\": 61767,\n \"closet\": 61768,\n \"chevron-up\": 61769,\n \"chevron-right\": 61770,\n \"chevron-left\": 61771,\n \"chevron-down\": 61772,\n \"check\": 61773,\n \"check-circle-2\": 61774,\n \"check-check\": 61775,\n \"cancel\": 61776,\n \"cancel-circle-stroke\": 61777,\n \"cancel-circle-solid\": 61778,\n \"calendar\": 61779,\n \"building\": 61780,\n \"bell\": 61781,\n \"bed-double\": 61782,\n \"bath\": 61783,\n \"balcony-window\": 61784,\n \"arrow-up\": 61785,\n \"arrow-up-right\": 61786,\n \"arrow-up-left\": 61787,\n \"arrow-up-down\": 61788,\n \"arrow-right\": 61789,\n \"arrow-left\": 61790,\n \"arrow-down\": 61791,\n \"arrow-down-right\": 61792,\n \"arrow-down-left\": 61793,\n \"archive\": 61794,\n \"alert-triangle\": 61795,\n \"air-conditioner\": 61796,\n \"add-note\": 61797,\n \"accessibility\": 61798\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":"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","names":[]}
@@ -106,7 +106,11 @@ declare const SvgEyeHidden: ({ size, ...props }: ReactIconProps) => React$1.JSX.
106
106
 
107
107
  declare const SvgEyeVisible: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
108
108
 
109
- declare const SvgFaceId: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
109
+ declare const SvgFaceAndroid: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
110
+
111
+ declare const SvgFaceIosBold: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
112
+
113
+ declare const SvgFaceIosLight: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
110
114
 
111
115
  declare const SvgFileCheck: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
112
116
 
@@ -124,8 +128,6 @@ declare const SvgFileText: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
124
128
 
125
129
  declare const SvgFilter: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
126
130
 
127
- declare const SvgFingerprintAndroid: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
128
-
129
131
  declare const SvgGarden: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
130
132
 
131
133
  declare const SvgGasHeating: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -134,6 +136,8 @@ declare const SvgHeating: ({ size, ...props }: ReactIconProps) => React$1.JSX.El
134
136
 
135
137
  declare const SvgHelpCircle: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
136
138
 
139
+ declare const SvgHistory: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
140
+
137
141
  declare const SvgHomeFilled: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
138
142
 
139
143
  declare const SvgHomeLinear: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -218,6 +222,10 @@ declare const SvgThermometerSnowflake: ({ size, ...props }: ReactIconProps) => R
218
222
 
219
223
  declare const SvgTime: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
220
224
 
225
+ declare const SvgTouchAndroid: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
226
+
227
+ declare const SvgTouchIos: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
228
+
221
229
  declare const SvgTrash2: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
222
230
 
223
231
  declare const SvgUser: ({ size, ...props }: ReactIconProps) => React$1.JSX.Element;
@@ -231,7 +239,7 @@ declare const SvgWhatsapp: ({ size, ...props }: ReactIconProps) => React$1.JSX.E
231
239
  /**
232
240
  * Available icon names
233
241
  */
234
- 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-id' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'fingerprint-android' | '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' | 'trash2' | 'user' | 'whatsapp';
242
+ 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' | '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' | 'swimming-pool' | 'terrace' | 'thermometer-snowflake' | 'time' | 'touch-android' | 'touch-ios' | 'trash2' | 'user' | 'whatsapp';
235
243
  /**
236
244
  * Props for the unified Icon component
237
245
  */
@@ -246,4 +254,4 @@ interface IconProps extends Omit<ReactIconProps, 'size'> {
246
254
  */
247
255
  declare const Icon: ({ name, size, color, ...props }: IconProps) => React$1.JSX.Element | null;
248
256
 
249
- 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, SvgFaceId as FaceId, SvgFileCheck as FileCheck, SvgFileInput as FileInput, SvgFileKey as FileKey, SvgFileLock as FileLock, SvgFileSignature as FileSignature, SvgFileSpreadsheet as FileSpreadsheet, SvgFileText as FileText, SvgFilter as Filter, SvgFingerprintAndroid as FingerprintAndroid, 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, SvgTrash2 as Trash2, SvgUser as User, SvgWhatsapp as Whatsapp, resolveSize };
257
+ 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, 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, 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 };