huspy-icons 0.3.5 → 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.
Files changed (44) hide show
  1. package/dist/fonts/HuspyIcons.css +141 -72
  2. package/dist/fonts/HuspyIcons.eot +0 -0
  3. package/dist/fonts/HuspyIcons.json +91 -68
  4. package/dist/fonts/HuspyIcons.ts +138 -69
  5. package/dist/fonts/HuspyIcons.ttf +0 -0
  6. package/dist/fonts/HuspyIcons.woff +0 -0
  7. package/dist/fonts/HuspyIcons.woff2 +0 -0
  8. package/dist/native/index.d.ts +1 -1
  9. package/dist/native/index.js +91 -68
  10. package/dist/native/index.js.map +1 -1
  11. package/dist/react/index.d.mts +48 -2
  12. package/dist/react/index.d.ts +48 -2
  13. package/dist/react/index.js +2463 -758
  14. package/dist/react/index.js.map +1 -1
  15. package/dist/react/index.mjs +2408 -703
  16. package/dist/react/index.mjs.map +1 -1
  17. package/package.json +1 -1
  18. package/src/native/glyphMap.ts +92 -69
  19. package/src/react/Accessibility.tsx +50 -0
  20. package/src/react/AirConditioner.tsx +62 -0
  21. package/src/react/Archive.tsx +38 -0
  22. package/src/react/BalconyWindow.tsx +24 -0
  23. package/src/react/Bath.tsx +50 -0
  24. package/src/react/Closet.tsx +24 -0
  25. package/src/react/DoorOpen.tsx +50 -0
  26. package/src/react/Electric.tsx +56 -0
  27. package/src/react/Garden.tsx +44 -0
  28. package/src/react/GasHeating.tsx +62 -0
  29. package/src/react/Heating.tsx +56 -0
  30. package/src/react/Icon.tsx +70 -1
  31. package/src/react/Image.tsx +38 -0
  32. package/src/react/Lift.tsx +24 -0
  33. package/src/react/MagicWand.tsx +68 -0
  34. package/src/react/Outside.tsx +68 -0
  35. package/src/react/Parking.tsx +50 -0
  36. package/src/react/Patio.tsx +74 -0
  37. package/src/react/Pet.tsx +56 -0
  38. package/src/react/PinMapSolid.tsx +26 -0
  39. package/src/react/Restaurant.tsx +32 -0
  40. package/src/react/SwimmingPool.tsx +56 -0
  41. package/src/react/Terrace.tsx +24 -0
  42. package/src/react/ThermometerSnowflake.tsx +56 -0
  43. package/src/react/index.ts +23 -0
  44. package/src/react/index.tsx +23 -0
@@ -2,35 +2,50 @@ export type HuspyIconsId =
2
2
  | "whatsapp"
3
3
  | "user"
4
4
  | "trash-2"
5
+ | "thermometer-snowflake"
6
+ | "terrace"
7
+ | "swimming-pool"
5
8
  | "size-3d"
6
9
  | "share"
7
10
  | "search"
8
11
  | "search-x"
9
12
  | "sale"
13
+ | "restaurant"
10
14
  | "rent"
11
15
  | "properties-linear"
12
16
  | "properties-filled"
13
17
  | "promotion"
14
18
  | "plus"
19
+ | "pin_map_solid"
15
20
  | "phone-linear"
21
+ | "pet"
16
22
  | "pencil-line"
17
23
  | "payments"
24
+ | "patio"
25
+ | "parking"
26
+ | "outside"
18
27
  | "notes"
19
28
  | "note"
20
29
  | "mortgage"
21
30
  | "more-horizontal"
22
31
  | "map-pin"
23
32
  | "mail"
33
+ | "magic-wand"
24
34
  | "logout"
25
35
  | "lock"
36
+ | "lift"
26
37
  | "leads-linear"
27
38
  | "leads-filled"
28
39
  | "keys_01"
29
40
  | "info"
41
+ | "image"
30
42
  | "icon-slot"
31
43
  | "home-linear"
32
44
  | "home-filled"
33
45
  | "help-circle"
46
+ | "heating"
47
+ | "gas-heating"
48
+ | "garden"
34
49
  | "fingerprint-android"
35
50
  | "filter"
36
51
  | "file-text"
@@ -45,8 +60,11 @@ export type HuspyIconsId =
45
60
  | "eye-hidden"
46
61
  | "explore-linear"
47
62
  | "explore-filled"
63
+ | "electric"
48
64
  | "edit"
65
+ | "door-open"
49
66
  | "collections"
67
+ | "closet"
50
68
  | "chevron-up"
51
69
  | "chevron-right"
52
70
  | "chevron-left"
@@ -59,6 +77,8 @@ export type HuspyIconsId =
59
77
  | "building"
60
78
  | "bell"
61
79
  | "bed-double"
80
+ | "bath"
81
+ | "balcony-window"
62
82
  | "arrow-up"
63
83
  | "arrow-up-right"
64
84
  | "arrow-up-left"
@@ -68,42 +88,60 @@ export type HuspyIconsId =
68
88
  | "arrow-down"
69
89
  | "arrow-down-right"
70
90
  | "arrow-down-left"
91
+ | "archive"
71
92
  | "alert-triangle"
72
- | "add-note";
93
+ | "air-conditioner"
94
+ | "add-note"
95
+ | "accessibility";
73
96
 
74
97
  export enum HuspyIcons {
75
98
  Whatsapp = "whatsapp",
76
99
  User = "user",
77
100
  Trash2 = "trash-2",
101
+ ThermometerSnowflake = "thermometer-snowflake",
102
+ Terrace = "terrace",
103
+ SwimmingPool = "swimming-pool",
78
104
  Size3d = "size-3d",
79
105
  Share = "share",
80
106
  Search = "search",
81
107
  SearchX = "search-x",
82
108
  Sale = "sale",
109
+ Restaurant = "restaurant",
83
110
  Rent = "rent",
84
111
  PropertiesLinear = "properties-linear",
85
112
  PropertiesFilled = "properties-filled",
86
113
  Promotion = "promotion",
87
114
  Plus = "plus",
115
+ PinMapSolid = "pin_map_solid",
88
116
  PhoneLinear = "phone-linear",
117
+ Pet = "pet",
89
118
  PencilLine = "pencil-line",
90
119
  Payments = "payments",
120
+ Patio = "patio",
121
+ Parking = "parking",
122
+ Outside = "outside",
91
123
  Notes = "notes",
92
124
  Note = "note",
93
125
  Mortgage = "mortgage",
94
126
  MoreHorizontal = "more-horizontal",
95
127
  MapPin = "map-pin",
96
128
  Mail = "mail",
129
+ MagicWand = "magic-wand",
97
130
  Logout = "logout",
98
131
  Lock = "lock",
132
+ Lift = "lift",
99
133
  LeadsLinear = "leads-linear",
100
134
  LeadsFilled = "leads-filled",
101
135
  Keys01 = "keys_01",
102
136
  Info = "info",
137
+ Image = "image",
103
138
  IconSlot = "icon-slot",
104
139
  HomeLinear = "home-linear",
105
140
  HomeFilled = "home-filled",
106
141
  HelpCircle = "help-circle",
142
+ Heating = "heating",
143
+ GasHeating = "gas-heating",
144
+ Garden = "garden",
107
145
  FingerprintAndroid = "fingerprint-android",
108
146
  Filter = "filter",
109
147
  FileText = "file-text",
@@ -118,8 +156,11 @@ export enum HuspyIcons {
118
156
  EyeHidden = "eye-hidden",
119
157
  ExploreLinear = "explore-linear",
120
158
  ExploreFilled = "explore-filled",
159
+ Electric = "electric",
121
160
  Edit = "edit",
161
+ DoorOpen = "door-open",
122
162
  Collections = "collections",
163
+ Closet = "closet",
123
164
  ChevronUp = "chevron-up",
124
165
  ChevronRight = "chevron-right",
125
166
  ChevronLeft = "chevron-left",
@@ -132,6 +173,8 @@ export enum HuspyIcons {
132
173
  Building = "building",
133
174
  Bell = "bell",
134
175
  BedDouble = "bed-double",
176
+ Bath = "bath",
177
+ BalconyWindow = "balcony-window",
135
178
  ArrowUp = "arrow-up",
136
179
  ArrowUpRight = "arrow-up-right",
137
180
  ArrowUpLeft = "arrow-up-left",
@@ -141,80 +184,106 @@ export enum HuspyIcons {
141
184
  ArrowDown = "arrow-down",
142
185
  ArrowDownRight = "arrow-down-right",
143
186
  ArrowDownLeft = "arrow-down-left",
187
+ Archive = "archive",
144
188
  AlertTriangle = "alert-triangle",
189
+ AirConditioner = "air-conditioner",
145
190
  AddNote = "add-note",
191
+ Accessibility = "accessibility",
146
192
  }
147
193
 
148
194
  export const HUSPY_ICONS_CODEPOINTS: { [key in HuspyIcons]: string } = {
149
195
  [HuspyIcons.Whatsapp]: "61697",
150
196
  [HuspyIcons.User]: "61698",
151
197
  [HuspyIcons.Trash2]: "61699",
152
- [HuspyIcons.Size3d]: "61700",
153
- [HuspyIcons.Share]: "61701",
154
- [HuspyIcons.Search]: "61702",
155
- [HuspyIcons.SearchX]: "61703",
156
- [HuspyIcons.Sale]: "61704",
157
- [HuspyIcons.Rent]: "61705",
158
- [HuspyIcons.PropertiesLinear]: "61706",
159
- [HuspyIcons.PropertiesFilled]: "61707",
160
- [HuspyIcons.Promotion]: "61708",
161
- [HuspyIcons.Plus]: "61709",
162
- [HuspyIcons.PhoneLinear]: "61710",
163
- [HuspyIcons.PencilLine]: "61711",
164
- [HuspyIcons.Payments]: "61712",
165
- [HuspyIcons.Notes]: "61713",
166
- [HuspyIcons.Note]: "61714",
167
- [HuspyIcons.Mortgage]: "61715",
168
- [HuspyIcons.MoreHorizontal]: "61716",
169
- [HuspyIcons.MapPin]: "61717",
170
- [HuspyIcons.Mail]: "61718",
171
- [HuspyIcons.Logout]: "61719",
172
- [HuspyIcons.Lock]: "61720",
173
- [HuspyIcons.LeadsLinear]: "61721",
174
- [HuspyIcons.LeadsFilled]: "61722",
175
- [HuspyIcons.Keys01]: "61723",
176
- [HuspyIcons.Info]: "61724",
177
- [HuspyIcons.IconSlot]: "61725",
178
- [HuspyIcons.HomeLinear]: "61726",
179
- [HuspyIcons.HomeFilled]: "61727",
180
- [HuspyIcons.HelpCircle]: "61728",
181
- [HuspyIcons.FingerprintAndroid]: "61729",
182
- [HuspyIcons.Filter]: "61730",
183
- [HuspyIcons.FileText]: "61731",
184
- [HuspyIcons.FileSpreadsheet]: "61732",
185
- [HuspyIcons.FileSignature]: "61733",
186
- [HuspyIcons.FileLock]: "61734",
187
- [HuspyIcons.FileKey]: "61735",
188
- [HuspyIcons.FileInput]: "61736",
189
- [HuspyIcons.FileCheck]: "61737",
190
- [HuspyIcons.FaceId]: "61738",
191
- [HuspyIcons.EyeVisible]: "61739",
192
- [HuspyIcons.EyeHidden]: "61740",
193
- [HuspyIcons.ExploreLinear]: "61741",
194
- [HuspyIcons.ExploreFilled]: "61742",
195
- [HuspyIcons.Edit]: "61743",
196
- [HuspyIcons.Collections]: "61744",
197
- [HuspyIcons.ChevronUp]: "61745",
198
- [HuspyIcons.ChevronRight]: "61746",
199
- [HuspyIcons.ChevronLeft]: "61747",
200
- [HuspyIcons.ChevronDown]: "61748",
201
- [HuspyIcons.Check]: "61749",
202
- [HuspyIcons.CheckCircle2]: "61750",
203
- [HuspyIcons.Cancel]: "61751",
204
- [HuspyIcons.CancelCircleSolid]: "61752",
205
- [HuspyIcons.Calendar]: "61753",
206
- [HuspyIcons.Building]: "61754",
207
- [HuspyIcons.Bell]: "61755",
208
- [HuspyIcons.BedDouble]: "61756",
209
- [HuspyIcons.ArrowUp]: "61757",
210
- [HuspyIcons.ArrowUpRight]: "61758",
211
- [HuspyIcons.ArrowUpLeft]: "61759",
212
- [HuspyIcons.ArrowUpDown]: "61760",
213
- [HuspyIcons.ArrowRight]: "61761",
214
- [HuspyIcons.ArrowLeft]: "61762",
215
- [HuspyIcons.ArrowDown]: "61763",
216
- [HuspyIcons.ArrowDownRight]: "61764",
217
- [HuspyIcons.ArrowDownLeft]: "61765",
218
- [HuspyIcons.AlertTriangle]: "61766",
219
- [HuspyIcons.AddNote]: "61767",
198
+ [HuspyIcons.ThermometerSnowflake]: "61700",
199
+ [HuspyIcons.Terrace]: "61701",
200
+ [HuspyIcons.SwimmingPool]: "61702",
201
+ [HuspyIcons.Size3d]: "61703",
202
+ [HuspyIcons.Share]: "61704",
203
+ [HuspyIcons.Search]: "61705",
204
+ [HuspyIcons.SearchX]: "61706",
205
+ [HuspyIcons.Sale]: "61707",
206
+ [HuspyIcons.Restaurant]: "61708",
207
+ [HuspyIcons.Rent]: "61709",
208
+ [HuspyIcons.PropertiesLinear]: "61710",
209
+ [HuspyIcons.PropertiesFilled]: "61711",
210
+ [HuspyIcons.Promotion]: "61712",
211
+ [HuspyIcons.Plus]: "61713",
212
+ [HuspyIcons.PinMapSolid]: "61714",
213
+ [HuspyIcons.PhoneLinear]: "61715",
214
+ [HuspyIcons.Pet]: "61716",
215
+ [HuspyIcons.PencilLine]: "61717",
216
+ [HuspyIcons.Payments]: "61718",
217
+ [HuspyIcons.Patio]: "61719",
218
+ [HuspyIcons.Parking]: "61720",
219
+ [HuspyIcons.Outside]: "61721",
220
+ [HuspyIcons.Notes]: "61722",
221
+ [HuspyIcons.Note]: "61723",
222
+ [HuspyIcons.Mortgage]: "61724",
223
+ [HuspyIcons.MoreHorizontal]: "61725",
224
+ [HuspyIcons.MapPin]: "61726",
225
+ [HuspyIcons.Mail]: "61727",
226
+ [HuspyIcons.MagicWand]: "61728",
227
+ [HuspyIcons.Logout]: "61729",
228
+ [HuspyIcons.Lock]: "61730",
229
+ [HuspyIcons.Lift]: "61731",
230
+ [HuspyIcons.LeadsLinear]: "61732",
231
+ [HuspyIcons.LeadsFilled]: "61733",
232
+ [HuspyIcons.Keys01]: "61734",
233
+ [HuspyIcons.Info]: "61735",
234
+ [HuspyIcons.Image]: "61736",
235
+ [HuspyIcons.IconSlot]: "61737",
236
+ [HuspyIcons.HomeLinear]: "61738",
237
+ [HuspyIcons.HomeFilled]: "61739",
238
+ [HuspyIcons.HelpCircle]: "61740",
239
+ [HuspyIcons.Heating]: "61741",
240
+ [HuspyIcons.GasHeating]: "61742",
241
+ [HuspyIcons.Garden]: "61743",
242
+ [HuspyIcons.FingerprintAndroid]: "61744",
243
+ [HuspyIcons.Filter]: "61745",
244
+ [HuspyIcons.FileText]: "61746",
245
+ [HuspyIcons.FileSpreadsheet]: "61747",
246
+ [HuspyIcons.FileSignature]: "61748",
247
+ [HuspyIcons.FileLock]: "61749",
248
+ [HuspyIcons.FileKey]: "61750",
249
+ [HuspyIcons.FileInput]: "61751",
250
+ [HuspyIcons.FileCheck]: "61752",
251
+ [HuspyIcons.FaceId]: "61753",
252
+ [HuspyIcons.EyeVisible]: "61754",
253
+ [HuspyIcons.EyeHidden]: "61755",
254
+ [HuspyIcons.ExploreLinear]: "61756",
255
+ [HuspyIcons.ExploreFilled]: "61757",
256
+ [HuspyIcons.Electric]: "61758",
257
+ [HuspyIcons.Edit]: "61759",
258
+ [HuspyIcons.DoorOpen]: "61760",
259
+ [HuspyIcons.Collections]: "61761",
260
+ [HuspyIcons.Closet]: "61762",
261
+ [HuspyIcons.ChevronUp]: "61763",
262
+ [HuspyIcons.ChevronRight]: "61764",
263
+ [HuspyIcons.ChevronLeft]: "61765",
264
+ [HuspyIcons.ChevronDown]: "61766",
265
+ [HuspyIcons.Check]: "61767",
266
+ [HuspyIcons.CheckCircle2]: "61768",
267
+ [HuspyIcons.Cancel]: "61769",
268
+ [HuspyIcons.CancelCircleSolid]: "61770",
269
+ [HuspyIcons.Calendar]: "61771",
270
+ [HuspyIcons.Building]: "61772",
271
+ [HuspyIcons.Bell]: "61773",
272
+ [HuspyIcons.BedDouble]: "61774",
273
+ [HuspyIcons.Bath]: "61775",
274
+ [HuspyIcons.BalconyWindow]: "61776",
275
+ [HuspyIcons.ArrowUp]: "61777",
276
+ [HuspyIcons.ArrowUpRight]: "61778",
277
+ [HuspyIcons.ArrowUpLeft]: "61779",
278
+ [HuspyIcons.ArrowUpDown]: "61780",
279
+ [HuspyIcons.ArrowRight]: "61781",
280
+ [HuspyIcons.ArrowLeft]: "61782",
281
+ [HuspyIcons.ArrowDown]: "61783",
282
+ [HuspyIcons.ArrowDownRight]: "61784",
283
+ [HuspyIcons.ArrowDownLeft]: "61785",
284
+ [HuspyIcons.Archive]: "61786",
285
+ [HuspyIcons.AlertTriangle]: "61787",
286
+ [HuspyIcons.AirConditioner]: "61788",
287
+ [HuspyIcons.AddNote]: "61789",
288
+ [HuspyIcons.Accessibility]: "61790",
220
289
  };
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' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'phone-linear' | 'pencil-line' | 'payments' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | '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' | 'edit' | 'collections' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'cancel' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle' | 'add-note';
7
+ type IconName = 'whatsapp' | 'user' | 'trash-2' | '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' | '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' | 'cancel' | '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,74 +45,97 @@ var glyphMap = {
45
45
  "whatsapp": 61697,
46
46
  "user": 61698,
47
47
  "trash-2": 61699,
48
- "size-3d": 61700,
49
- "share": 61701,
50
- "search": 61702,
51
- "search-x": 61703,
52
- "sale": 61704,
53
- "rent": 61705,
54
- "properties-linear": 61706,
55
- "properties-filled": 61707,
56
- "promotion": 61708,
57
- "plus": 61709,
58
- "phone-linear": 61710,
59
- "pencil-line": 61711,
60
- "payments": 61712,
61
- "notes": 61713,
62
- "note": 61714,
63
- "mortgage": 61715,
64
- "more-horizontal": 61716,
65
- "map-pin": 61717,
66
- "mail": 61718,
67
- "logout": 61719,
68
- "lock": 61720,
69
- "leads-linear": 61721,
70
- "leads-filled": 61722,
71
- "keys_01": 61723,
72
- "info": 61724,
73
- "icon-slot": 61725,
74
- "home-linear": 61726,
75
- "home-filled": 61727,
76
- "help-circle": 61728,
77
- "fingerprint-android": 61729,
78
- "filter": 61730,
79
- "file-text": 61731,
80
- "file-spreadsheet": 61732,
81
- "file-signature": 61733,
82
- "file-lock": 61734,
83
- "file-key": 61735,
84
- "file-input": 61736,
85
- "file-check": 61737,
86
- "face-id": 61738,
87
- "eye-visible": 61739,
88
- "eye-hidden": 61740,
89
- "explore-linear": 61741,
90
- "explore-filled": 61742,
91
- "edit": 61743,
92
- "collections": 61744,
93
- "chevron-up": 61745,
94
- "chevron-right": 61746,
95
- "chevron-left": 61747,
96
- "chevron-down": 61748,
97
- "check": 61749,
98
- "check-circle-2": 61750,
99
- "cancel": 61751,
100
- "cancel-circle-solid": 61752,
101
- "calendar": 61753,
102
- "building": 61754,
103
- "bell": 61755,
104
- "bed-double": 61756,
105
- "arrow-up": 61757,
106
- "arrow-up-right": 61758,
107
- "arrow-up-left": 61759,
108
- "arrow-up-down": 61760,
109
- "arrow-right": 61761,
110
- "arrow-left": 61762,
111
- "arrow-down": 61763,
112
- "arrow-down-right": 61764,
113
- "arrow-down-left": 61765,
114
- "alert-triangle": 61766,
115
- "add-note": 61767
48
+ "thermometer-snowflake": 61700,
49
+ "terrace": 61701,
50
+ "swimming-pool": 61702,
51
+ "size-3d": 61703,
52
+ "share": 61704,
53
+ "search": 61705,
54
+ "search-x": 61706,
55
+ "sale": 61707,
56
+ "restaurant": 61708,
57
+ "rent": 61709,
58
+ "properties-linear": 61710,
59
+ "properties-filled": 61711,
60
+ "promotion": 61712,
61
+ "plus": 61713,
62
+ "pin_map_solid": 61714,
63
+ "phone-linear": 61715,
64
+ "pet": 61716,
65
+ "pencil-line": 61717,
66
+ "payments": 61718,
67
+ "patio": 61719,
68
+ "parking": 61720,
69
+ "outside": 61721,
70
+ "notes": 61722,
71
+ "note": 61723,
72
+ "mortgage": 61724,
73
+ "more-horizontal": 61725,
74
+ "map-pin": 61726,
75
+ "mail": 61727,
76
+ "magic-wand": 61728,
77
+ "logout": 61729,
78
+ "lock": 61730,
79
+ "lift": 61731,
80
+ "leads-linear": 61732,
81
+ "leads-filled": 61733,
82
+ "keys_01": 61734,
83
+ "info": 61735,
84
+ "image": 61736,
85
+ "icon-slot": 61737,
86
+ "home-linear": 61738,
87
+ "home-filled": 61739,
88
+ "help-circle": 61740,
89
+ "heating": 61741,
90
+ "gas-heating": 61742,
91
+ "garden": 61743,
92
+ "fingerprint-android": 61744,
93
+ "filter": 61745,
94
+ "file-text": 61746,
95
+ "file-spreadsheet": 61747,
96
+ "file-signature": 61748,
97
+ "file-lock": 61749,
98
+ "file-key": 61750,
99
+ "file-input": 61751,
100
+ "file-check": 61752,
101
+ "face-id": 61753,
102
+ "eye-visible": 61754,
103
+ "eye-hidden": 61755,
104
+ "explore-linear": 61756,
105
+ "explore-filled": 61757,
106
+ "electric": 61758,
107
+ "edit": 61759,
108
+ "door-open": 61760,
109
+ "collections": 61761,
110
+ "closet": 61762,
111
+ "chevron-up": 61763,
112
+ "chevron-right": 61764,
113
+ "chevron-left": 61765,
114
+ "chevron-down": 61766,
115
+ "check": 61767,
116
+ "check-circle-2": 61768,
117
+ "cancel": 61769,
118
+ "cancel-circle-solid": 61770,
119
+ "calendar": 61771,
120
+ "building": 61772,
121
+ "bell": 61773,
122
+ "bed-double": 61774,
123
+ "bath": 61775,
124
+ "balcony-window": 61776,
125
+ "arrow-up": 61777,
126
+ "arrow-up-right": 61778,
127
+ "arrow-up-left": 61779,
128
+ "arrow-up-down": 61780,
129
+ "arrow-right": 61781,
130
+ "arrow-left": 61782,
131
+ "arrow-down": 61783,
132
+ "arrow-down-right": 61784,
133
+ "arrow-down-left": 61785,
134
+ "archive": 61786,
135
+ "alert-triangle": 61787,
136
+ "air-conditioner": 61788,
137
+ "add-note": 61789,
138
+ "accessibility": 61790
116
139
  };
117
140
  var fontFamily = "HuspyIcons";
118
141
 
@@ -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' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'phone-linear' | 'pencil-line' | 'payments' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | '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' | 'edit' | 'collections' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'cancel' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle' | 'add-note';\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 \"size-3d\": 61700,\n \"share\": 61701,\n \"search\": 61702,\n \"search-x\": 61703,\n \"sale\": 61704,\n \"rent\": 61705,\n \"properties-linear\": 61706,\n \"properties-filled\": 61707,\n \"promotion\": 61708,\n \"plus\": 61709,\n \"phone-linear\": 61710,\n \"pencil-line\": 61711,\n \"payments\": 61712,\n \"notes\": 61713,\n \"note\": 61714,\n \"mortgage\": 61715,\n \"more-horizontal\": 61716,\n \"map-pin\": 61717,\n \"mail\": 61718,\n \"logout\": 61719,\n \"lock\": 61720,\n \"leads-linear\": 61721,\n \"leads-filled\": 61722,\n \"keys_01\": 61723,\n \"info\": 61724,\n \"icon-slot\": 61725,\n \"home-linear\": 61726,\n \"home-filled\": 61727,\n \"help-circle\": 61728,\n \"fingerprint-android\": 61729,\n \"filter\": 61730,\n \"file-text\": 61731,\n \"file-spreadsheet\": 61732,\n \"file-signature\": 61733,\n \"file-lock\": 61734,\n \"file-key\": 61735,\n \"file-input\": 61736,\n \"file-check\": 61737,\n \"face-id\": 61738,\n \"eye-visible\": 61739,\n \"eye-hidden\": 61740,\n \"explore-linear\": 61741,\n \"explore-filled\": 61742,\n \"edit\": 61743,\n \"collections\": 61744,\n \"chevron-up\": 61745,\n \"chevron-right\": 61746,\n \"chevron-left\": 61747,\n \"chevron-down\": 61748,\n \"check\": 61749,\n \"check-circle-2\": 61750,\n \"cancel\": 61751,\n \"cancel-circle-solid\": 61752,\n \"calendar\": 61753,\n \"building\": 61754,\n \"bell\": 61755,\n \"bed-double\": 61756,\n \"arrow-up\": 61757,\n \"arrow-up-right\": 61758,\n \"arrow-up-left\": 61759,\n \"arrow-up-down\": 61760,\n \"arrow-right\": 61761,\n \"arrow-left\": 61762,\n \"arrow-down\": 61763,\n \"arrow-down-right\": 61764,\n \"arrow-down-left\": 61765,\n \"alert-triangle\": 61766,\n \"add-note\": 61767\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,YAAuB;AACvB,0BAAgC;;;ACWzB,IAAM,WAAqC;AAAA,EAChD,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,WAAW;AAAA,EACX,WAAW;AAAA,EACX,SAAS;AAAA,EACT,UAAU;AAAA,EACV,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,qBAAqB;AAAA,EACrB,qBAAqB;AAAA,EACrB,aAAa;AAAA,EACb,QAAQ;AAAA,EACR,gBAAgB;AAAA,EAChB,eAAe;AAAA,EACf,YAAY;AAAA,EACZ,SAAS;AAAA,EACT,QAAQ;AAAA,EACR,YAAY;AAAA,EACZ,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,QAAQ;AAAA,EACR,UAAU;AAAA,EACV,QAAQ;AAAA,EACR,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,WAAW;AAAA,EACX,QAAQ;AAAA,EACR,aAAa;AAAA,EACb,eAAe;AAAA,EACf,eAAe;AAAA,EACf,eAAe;AAAA,EACf,uBAAuB;AAAA,EACvB,UAAU;AAAA,EACV,aAAa;AAAA,EACb,oBAAoB;AAAA,EACpB,kBAAkB;AAAA,EAClB,aAAa;AAAA,EACb,YAAY;AAAA,EACZ,cAAc;AAAA,EACd,cAAc;AAAA,EACd,WAAW;AAAA,EACX,eAAe;AAAA,EACf,cAAc;AAAA,EACd,kBAAkB;AAAA,EAClB,kBAAkB;AAAA,EAClB,QAAQ;AAAA,EACR,eAAe;AAAA,EACf,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,gBAAgB;AAAA,EAChB,gBAAgB;AAAA,EAChB,SAAS;AAAA,EACT,kBAAkB;AAAA,EAClB,UAAU;AAAA,EACV,uBAAuB;AAAA,EACvB,YAAY;AAAA,EACZ,YAAY;AAAA,EACZ,QAAQ;AAAA,EACR,cAAc;AAAA,EACd,YAAY;AAAA,EACZ,kBAAkB;AAAA,EAClB,iBAAiB;AAAA,EACjB,iBAAiB;AAAA,EACjB,eAAe;AAAA,EACf,cAAc;AAAA,EACd,cAAc;AAAA,EACd,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,kBAAkB;AAAA,EAClB,YAAY;AACd;AAKO,IAAM,aAAa;;;ADvD1B,IAAM,OAAO,CAAC,EAAE,MAAM,OAAO,IAAI,QAAQ,QAAQ,OAAO,GAAG,MAAM,MAAiB;AAChF,QAAM,YAAY,SAAS,IAAI;AAE/B,MAAI,CAAC,WAAW;AACd,QAAI,SAAS;AACX,cAAQ,KAAK,SAAS,IAAI,gCAAgC;AAAA,IAC5D;AACA,WAAO;AAAA,EACT;AAGA,QAAM,QAAQ,OAAO,aAAa,SAAS;AAE3C,SACE;AAAA,IAAC;AAAA;AAAA,MACE,GAAG;AAAA,MACJ,OAAO;AAAA,QACL;AAAA,UACE;AAAA,UACA,UAAU;AAAA,UACV;AAAA;AAAA,UAEA,YAAY;AAAA,UACZ,WAAW;AAAA;AAAA,UAEX,oBAAoB;AAAA;AAAA,UACpB,mBAAmB;AAAA;AAAA,QACrB;AAAA,QACA;AAAA,MACF;AAAA,MAEA,YAAU;AAAA,MACV,oBAAoB,MAAM,sBAAsB;AAAA,MAChD,mBAAkB;AAAA;AAAA,IAEjB;AAAA,EACH;AAEJ;AAEA,IAAO,eAAQ;","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' | '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' | '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' | 'cancel' | '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 \"thermometer-snowflake\": 61700,\n \"terrace\": 61701,\n \"swimming-pool\": 61702,\n \"size-3d\": 61703,\n \"share\": 61704,\n \"search\": 61705,\n \"search-x\": 61706,\n \"sale\": 61707,\n \"restaurant\": 61708,\n \"rent\": 61709,\n \"properties-linear\": 61710,\n \"properties-filled\": 61711,\n \"promotion\": 61712,\n \"plus\": 61713,\n \"pin_map_solid\": 61714,\n \"phone-linear\": 61715,\n \"pet\": 61716,\n \"pencil-line\": 61717,\n \"payments\": 61718,\n \"patio\": 61719,\n \"parking\": 61720,\n \"outside\": 61721,\n \"notes\": 61722,\n \"note\": 61723,\n \"mortgage\": 61724,\n \"more-horizontal\": 61725,\n \"map-pin\": 61726,\n \"mail\": 61727,\n \"magic-wand\": 61728,\n \"logout\": 61729,\n \"lock\": 61730,\n \"lift\": 61731,\n \"leads-linear\": 61732,\n \"leads-filled\": 61733,\n \"keys_01\": 61734,\n \"info\": 61735,\n \"image\": 61736,\n \"icon-slot\": 61737,\n \"home-linear\": 61738,\n \"home-filled\": 61739,\n \"help-circle\": 61740,\n \"heating\": 61741,\n \"gas-heating\": 61742,\n \"garden\": 61743,\n \"fingerprint-android\": 61744,\n \"filter\": 61745,\n \"file-text\": 61746,\n \"file-spreadsheet\": 61747,\n \"file-signature\": 61748,\n \"file-lock\": 61749,\n \"file-key\": 61750,\n \"file-input\": 61751,\n \"file-check\": 61752,\n \"face-id\": 61753,\n \"eye-visible\": 61754,\n \"eye-hidden\": 61755,\n \"explore-linear\": 61756,\n \"explore-filled\": 61757,\n \"electric\": 61758,\n \"edit\": 61759,\n \"door-open\": 61760,\n \"collections\": 61761,\n \"closet\": 61762,\n \"chevron-up\": 61763,\n \"chevron-right\": 61764,\n \"chevron-left\": 61765,\n \"chevron-down\": 61766,\n \"check\": 61767,\n \"check-circle-2\": 61768,\n \"cancel\": 61769,\n \"cancel-circle-solid\": 61770,\n \"calendar\": 61771,\n \"building\": 61772,\n \"bell\": 61773,\n \"bed-double\": 61774,\n \"bath\": 61775,\n \"balcony-window\": 61776,\n \"arrow-up\": 61777,\n \"arrow-up-right\": 61778,\n \"arrow-up-left\": 61779,\n \"arrow-up-down\": 61780,\n \"arrow-right\": 61781,\n \"arrow-left\": 61782,\n \"arrow-down\": 61783,\n \"arrow-down-right\": 61784,\n \"arrow-down-left\": 61785,\n \"archive\": 61786,\n \"alert-triangle\": 61787,\n \"air-conditioner\": 61788,\n \"add-note\": 61789,\n \"accessibility\": 61790\n};\n\n/**\n * Font family name for React Native\n */\nexport const fontFamily = 'HuspyIcons';\n"],"mappings":"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","names":[]}