@nice2dev/icons-life 1.0.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.
Files changed (66) hide show
  1. package/README.md +182 -0
  2. package/dist/createLifeIcon-BAJdO67Z.cjs +134 -0
  3. package/dist/createLifeIcon-BAJdO67Z.cjs.map +1 -0
  4. package/dist/createLifeIcon-BjwgNM6z.js +135 -0
  5. package/dist/createLifeIcon-BjwgNM6z.js.map +1 -0
  6. package/dist/createLifeIcon.d.ts +11 -0
  7. package/dist/createLifeIcon.d.ts.map +1 -0
  8. package/dist/family.d.ts +53 -0
  9. package/dist/family.d.ts.map +1 -0
  10. package/dist/finance-CY9lsJ72.cjs +496 -0
  11. package/dist/finance-CY9lsJ72.cjs.map +1 -0
  12. package/dist/finance-CeKDD16o.js +497 -0
  13. package/dist/finance-CeKDD16o.js.map +1 -0
  14. package/dist/finance.cjs +21 -0
  15. package/dist/finance.cjs.map +1 -0
  16. package/dist/finance.d.ts +18 -0
  17. package/dist/finance.d.ts.map +1 -0
  18. package/dist/finance.js +21 -0
  19. package/dist/finance.js.map +1 -0
  20. package/dist/health-C45FWWY6.cjs +531 -0
  21. package/dist/health-C45FWWY6.cjs.map +1 -0
  22. package/dist/health-DslCiA58.js +532 -0
  23. package/dist/health-DslCiA58.js.map +1 -0
  24. package/dist/health.cjs +21 -0
  25. package/dist/health.cjs.map +1 -0
  26. package/dist/health.d.ts +18 -0
  27. package/dist/health.d.ts.map +1 -0
  28. package/dist/health.js +21 -0
  29. package/dist/health.js.map +1 -0
  30. package/dist/hobbies.d.ts +49 -0
  31. package/dist/hobbies.d.ts.map +1 -0
  32. package/dist/home-DIQE0xSu.js +541 -0
  33. package/dist/home-DIQE0xSu.js.map +1 -0
  34. package/dist/home-M8Wx9F25.cjs +540 -0
  35. package/dist/home-M8Wx9F25.cjs.map +1 -0
  36. package/dist/home.cjs +21 -0
  37. package/dist/home.cjs.map +1 -0
  38. package/dist/home.d.ts +18 -0
  39. package/dist/home.d.ts.map +1 -0
  40. package/dist/home.js +21 -0
  41. package/dist/home.js.map +1 -0
  42. package/dist/index.cjs +7223 -0
  43. package/dist/index.cjs.map +1 -0
  44. package/dist/index.d.ts +640 -0
  45. package/dist/index.d.ts.map +1 -0
  46. package/dist/index.js +7227 -0
  47. package/dist/index.js.map +1 -0
  48. package/dist/productivity-BK198AbT.js +512 -0
  49. package/dist/productivity-BK198AbT.js.map +1 -0
  50. package/dist/productivity-DhUOR9P4.cjs +511 -0
  51. package/dist/productivity-DhUOR9P4.cjs.map +1 -0
  52. package/dist/productivity.cjs +21 -0
  53. package/dist/productivity.cjs.map +1 -0
  54. package/dist/productivity.d.ts +18 -0
  55. package/dist/productivity.d.ts.map +1 -0
  56. package/dist/productivity.js +21 -0
  57. package/dist/productivity.js.map +1 -0
  58. package/dist/relationships.d.ts +38 -0
  59. package/dist/relationships.d.ts.map +1 -0
  60. package/dist/selfcare.d.ts +45 -0
  61. package/dist/selfcare.d.ts.map +1 -0
  62. package/dist/travel.d.ts +46 -0
  63. package/dist/travel.d.ts.map +1 -0
  64. package/dist/types.d.ts +33 -0
  65. package/dist/types.d.ts.map +1 -0
  66. package/package.json +84 -0
@@ -0,0 +1,540 @@
1
+ "use strict";
2
+ const jsxRuntime = require("react/jsx-runtime");
3
+ const createLifeIcon = require("./createLifeIcon-BAJdO67Z.cjs");
4
+ const HouseIcon = createLifeIcon.createLifeIcon(
5
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
6
+ /* @__PURE__ */ jsxRuntime.jsx(
7
+ "path",
8
+ {
9
+ d: "M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2V9z",
10
+ fill: variant === "outlined" ? "none" : color,
11
+ stroke: color,
12
+ strokeWidth: "2",
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round"
15
+ }
16
+ ),
17
+ /* @__PURE__ */ jsxRuntime.jsx(
18
+ "polyline",
19
+ {
20
+ points: "9,22 9,12 15,12 15,22",
21
+ fill: accentColor || (variant === "filled" ? "#fff" : "none"),
22
+ stroke: variant === "filled" ? "#fff" : color,
23
+ strokeWidth: "2",
24
+ strokeLinecap: "round",
25
+ strokeLinejoin: "round"
26
+ }
27
+ )
28
+ ] }),
29
+ { displayName: "HouseIcon" }
30
+ );
31
+ const BuildingIcon = createLifeIcon.createLifeIcon(
32
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
33
+ /* @__PURE__ */ jsxRuntime.jsx(
34
+ "rect",
35
+ {
36
+ x: "4",
37
+ y: "2",
38
+ width: "16",
39
+ height: "20",
40
+ fill: variant === "outlined" ? "none" : color,
41
+ stroke: color,
42
+ strokeWidth: "2"
43
+ }
44
+ ),
45
+ /* @__PURE__ */ jsxRuntime.jsx(
46
+ "path",
47
+ {
48
+ d: "M9 22v-4h6v4",
49
+ fill: accentColor || (variant === "filled" ? "#fff" : "none"),
50
+ stroke: variant === "filled" ? "#fff" : color,
51
+ strokeWidth: "2"
52
+ }
53
+ ),
54
+ /* @__PURE__ */ jsxRuntime.jsx(
55
+ "rect",
56
+ {
57
+ x: "7",
58
+ y: "5",
59
+ width: "3",
60
+ height: "3",
61
+ fill: variant === "filled" ? "#fff" : "none",
62
+ stroke: variant === "filled" ? "#fff" : color
63
+ }
64
+ ),
65
+ /* @__PURE__ */ jsxRuntime.jsx(
66
+ "rect",
67
+ {
68
+ x: "14",
69
+ y: "5",
70
+ width: "3",
71
+ height: "3",
72
+ fill: variant === "filled" ? "#fff" : "none",
73
+ stroke: variant === "filled" ? "#fff" : color
74
+ }
75
+ ),
76
+ /* @__PURE__ */ jsxRuntime.jsx(
77
+ "rect",
78
+ {
79
+ x: "7",
80
+ y: "11",
81
+ width: "3",
82
+ height: "3",
83
+ fill: variant === "filled" ? "#fff" : "none",
84
+ stroke: variant === "filled" ? "#fff" : color
85
+ }
86
+ ),
87
+ /* @__PURE__ */ jsxRuntime.jsx(
88
+ "rect",
89
+ {
90
+ x: "14",
91
+ y: "11",
92
+ width: "3",
93
+ height: "3",
94
+ fill: variant === "filled" ? "#fff" : "none",
95
+ stroke: variant === "filled" ? "#fff" : color
96
+ }
97
+ )
98
+ ] }),
99
+ { displayName: "BuildingIcon" }
100
+ );
101
+ const DoorIcon = createLifeIcon.createLifeIcon(
102
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
103
+ /* @__PURE__ */ jsxRuntime.jsx(
104
+ "rect",
105
+ {
106
+ x: "5",
107
+ y: "2",
108
+ width: "14",
109
+ height: "20",
110
+ rx: "1",
111
+ fill: variant === "outlined" ? "none" : accentColor || "#a78bfa",
112
+ stroke: color,
113
+ strokeWidth: "2"
114
+ }
115
+ ),
116
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15", cy: "12", r: "1", fill: color }),
117
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 22h14", stroke: color, strokeWidth: "2", strokeLinecap: "round" })
118
+ ] }),
119
+ { displayName: "DoorIcon" }
120
+ );
121
+ const KeyIcon = createLifeIcon.createLifeIcon(
122
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
123
+ /* @__PURE__ */ jsxRuntime.jsx(
124
+ "circle",
125
+ {
126
+ cx: "7.5",
127
+ cy: "7.5",
128
+ r: "5",
129
+ fill: variant === "outlined" ? "none" : accentColor || "#fcd34d",
130
+ stroke: color,
131
+ strokeWidth: "2"
132
+ }
133
+ ),
134
+ /* @__PURE__ */ jsxRuntime.jsx(
135
+ "path",
136
+ {
137
+ d: "M11.5 11.5L22 22M19 19l3-3-3-3M16 16l-3 3",
138
+ fill: "none",
139
+ stroke: color,
140
+ strokeWidth: "2",
141
+ strokeLinecap: "round",
142
+ strokeLinejoin: "round"
143
+ }
144
+ )
145
+ ] }),
146
+ { displayName: "KeyIcon" }
147
+ );
148
+ const BedIcon = createLifeIcon.createLifeIcon(
149
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
150
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 4v16M22 4v16", stroke: color, strokeWidth: "2", strokeLinecap: "round" }),
151
+ /* @__PURE__ */ jsxRuntime.jsx(
152
+ "path",
153
+ {
154
+ d: "M2 16h20V10a2 2 0 00-2-2H4a2 2 0 00-2 2v6z",
155
+ fill: variant === "outlined" ? "none" : color,
156
+ stroke: color,
157
+ strokeWidth: "2"
158
+ }
159
+ ),
160
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M2 10V8a2 2 0 012-2h16a2 2 0 012 2v2", fill: "none", stroke: color, strokeWidth: "2" }),
161
+ /* @__PURE__ */ jsxRuntime.jsx(
162
+ "ellipse",
163
+ {
164
+ cx: "7",
165
+ cy: "10",
166
+ rx: "2",
167
+ ry: "1.5",
168
+ fill: accentColor || (variant === "filled" ? "#fff" : "none"),
169
+ stroke: variant === "filled" ? "#fff" : color
170
+ }
171
+ )
172
+ ] }),
173
+ { displayName: "BedIcon" }
174
+ );
175
+ const SofaIcon = createLifeIcon.createLifeIcon(
176
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
177
+ /* @__PURE__ */ jsxRuntime.jsx(
178
+ "path",
179
+ {
180
+ d: "M4 11V7a3 3 0 013-3h10a3 3 0 013 3v4",
181
+ fill: variant === "outlined" ? "none" : accentColor || color,
182
+ stroke: color,
183
+ strokeWidth: "2"
184
+ }
185
+ ),
186
+ /* @__PURE__ */ jsxRuntime.jsx(
187
+ "path",
188
+ {
189
+ d: "M2 11v6a2 2 0 002 2h16a2 2 0 002-2v-6a2 2 0 00-2-2H4a2 2 0 00-2 2z",
190
+ fill: variant === "outlined" ? "none" : color,
191
+ stroke: color,
192
+ strokeWidth: "2"
193
+ }
194
+ ),
195
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 19v2M20 19v2M8 15h8", stroke: color, strokeWidth: "2", strokeLinecap: "round" })
196
+ ] }),
197
+ { displayName: "SofaIcon" }
198
+ );
199
+ const LampIcon = createLifeIcon.createLifeIcon(
200
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
201
+ /* @__PURE__ */ jsxRuntime.jsx(
202
+ "path",
203
+ {
204
+ d: "M9 2h6l-1 8H10L9 2z",
205
+ fill: variant === "outlined" ? "none" : accentColor || "#fcd34d",
206
+ stroke: color,
207
+ strokeWidth: "2",
208
+ strokeLinejoin: "round"
209
+ }
210
+ ),
211
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 10v8M8 22h8", stroke: color, strokeWidth: "2", strokeLinecap: "round" }),
212
+ /* @__PURE__ */ jsxRuntime.jsx(
213
+ "ellipse",
214
+ {
215
+ cx: "12",
216
+ cy: "18",
217
+ rx: "3",
218
+ ry: "1",
219
+ fill: variant === "outlined" ? "none" : color,
220
+ stroke: color,
221
+ strokeWidth: "2"
222
+ }
223
+ )
224
+ ] }),
225
+ { displayName: "LampIcon" }
226
+ );
227
+ const KitchenIcon = createLifeIcon.createLifeIcon(
228
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
229
+ /* @__PURE__ */ jsxRuntime.jsx(
230
+ "rect",
231
+ {
232
+ x: "3",
233
+ y: "10",
234
+ width: "18",
235
+ height: "12",
236
+ rx: "1",
237
+ fill: variant === "outlined" ? "none" : color,
238
+ stroke: color,
239
+ strokeWidth: "2"
240
+ }
241
+ ),
242
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 14h18", stroke: variant === "filled" ? "#fff" : color, strokeWidth: "2" }),
243
+ /* @__PURE__ */ jsxRuntime.jsx(
244
+ "path",
245
+ {
246
+ d: "M7 2h2v2a2 2 0 01-2 2 2 2 0 01-2-2V4h2zM12 2h2v2a2 2 0 01-2 2 2 2 0 01-2-2V4h2zM17 2h2v2a2 2 0 01-2 2 2 2 0 01-2-2V4h2z",
247
+ fill: "none",
248
+ stroke: accentColor || color,
249
+ strokeWidth: "1.5",
250
+ strokeLinecap: "round"
251
+ }
252
+ ),
253
+ /* @__PURE__ */ jsxRuntime.jsx(
254
+ "rect",
255
+ {
256
+ x: "6",
257
+ y: "17",
258
+ width: "5",
259
+ height: "4",
260
+ fill: variant === "filled" ? "#fff" : "none",
261
+ stroke: variant === "filled" ? "#fff" : color,
262
+ strokeWidth: "1.5"
263
+ }
264
+ )
265
+ ] }),
266
+ { displayName: "KitchenIcon" }
267
+ );
268
+ const BathtubIcon = createLifeIcon.createLifeIcon(
269
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
270
+ /* @__PURE__ */ jsxRuntime.jsx(
271
+ "path",
272
+ {
273
+ d: "M2 13h20v4a4 4 0 01-4 4H6a4 4 0 01-4-4v-4z",
274
+ fill: variant === "outlined" ? "none" : accentColor || "#93c5fd",
275
+ stroke: color,
276
+ strokeWidth: "2"
277
+ }
278
+ ),
279
+ /* @__PURE__ */ jsxRuntime.jsx(
280
+ "path",
281
+ {
282
+ d: "M6 13V5a2 2 0 012-2 2 2 0 012 2v1",
283
+ fill: "none",
284
+ stroke: color,
285
+ strokeWidth: "2",
286
+ strokeLinecap: "round"
287
+ }
288
+ ),
289
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "9", cy: "7", r: "1", fill: color }),
290
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 21v1M18 21v1", stroke: color, strokeWidth: "2", strokeLinecap: "round" })
291
+ ] }),
292
+ { displayName: "BathtubIcon" }
293
+ );
294
+ const GarageIcon = createLifeIcon.createLifeIcon(
295
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
296
+ /* @__PURE__ */ jsxRuntime.jsx(
297
+ "path",
298
+ {
299
+ d: "M3 10l9-7 9 7",
300
+ fill: "none",
301
+ stroke: color,
302
+ strokeWidth: "2",
303
+ strokeLinecap: "round",
304
+ strokeLinejoin: "round"
305
+ }
306
+ ),
307
+ /* @__PURE__ */ jsxRuntime.jsx(
308
+ "rect",
309
+ {
310
+ x: "4",
311
+ y: "10",
312
+ width: "16",
313
+ height: "12",
314
+ fill: variant === "outlined" ? "none" : color,
315
+ stroke: color,
316
+ strokeWidth: "2"
317
+ }
318
+ ),
319
+ /* @__PURE__ */ jsxRuntime.jsx(
320
+ "path",
321
+ {
322
+ d: "M6 14h12M6 17h12M6 20h12",
323
+ stroke: accentColor || (variant === "filled" ? "#fff" : color),
324
+ strokeWidth: "2",
325
+ strokeLinecap: "round"
326
+ }
327
+ )
328
+ ] }),
329
+ { displayName: "GarageIcon" }
330
+ );
331
+ const GardenIcon = createLifeIcon.createLifeIcon(
332
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
333
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 22V8", stroke: accentColor || "#22c55e", strokeWidth: "2", strokeLinecap: "round" }),
334
+ /* @__PURE__ */ jsxRuntime.jsx(
335
+ "path",
336
+ {
337
+ d: "M4 11c0-3 3-5 8-5s8 2 8 5c0 4-4 2-8 2s-8 2-8-2z",
338
+ fill: variant === "outlined" ? "none" : accentColor || "#86efac",
339
+ stroke: color,
340
+ strokeWidth: "2"
341
+ }
342
+ ),
343
+ /* @__PURE__ */ jsxRuntime.jsx(
344
+ "path",
345
+ {
346
+ d: "M8 2c0 3 2 5 4 6M16 2c0 3-2 5-4 6",
347
+ fill: "none",
348
+ stroke: accentColor || "#22c55e",
349
+ strokeWidth: "2",
350
+ strokeLinecap: "round"
351
+ }
352
+ ),
353
+ /* @__PURE__ */ jsxRuntime.jsx(
354
+ "ellipse",
355
+ {
356
+ cx: "12",
357
+ cy: "21",
358
+ rx: "4",
359
+ ry: "1",
360
+ fill: variant === "outlined" ? "none" : "#92400e",
361
+ stroke: color,
362
+ strokeWidth: "1"
363
+ }
364
+ )
365
+ ] }),
366
+ { displayName: "GardenIcon" }
367
+ );
368
+ const FenceIcon = createLifeIcon.createLifeIcon(
369
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
370
+ /* @__PURE__ */ jsxRuntime.jsx(
371
+ "path",
372
+ {
373
+ d: "M4 6l2-4 2 4M10 6l2-4 2 4M16 6l2-4 2 4",
374
+ fill: variant === "outlined" ? "none" : accentColor || color,
375
+ stroke: color,
376
+ strokeWidth: "2",
377
+ strokeLinejoin: "round"
378
+ }
379
+ ),
380
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 6v14M10 6v14M16 6v14M22 6v14", stroke: color, strokeWidth: "2" }),
381
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 10h18M4 16h18", stroke: color, strokeWidth: "2", strokeLinecap: "round" })
382
+ ] }),
383
+ { displayName: "FenceIcon" }
384
+ );
385
+ const AirConditionerIcon = createLifeIcon.createLifeIcon(
386
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
387
+ /* @__PURE__ */ jsxRuntime.jsx(
388
+ "rect",
389
+ {
390
+ x: "2",
391
+ y: "4",
392
+ width: "20",
393
+ height: "10",
394
+ rx: "2",
395
+ fill: variant === "outlined" ? "none" : color,
396
+ stroke: color,
397
+ strokeWidth: "2"
398
+ }
399
+ ),
400
+ /* @__PURE__ */ jsxRuntime.jsx(
401
+ "path",
402
+ {
403
+ d: "M5 8h14M5 11h14",
404
+ stroke: variant === "filled" ? "#fff" : accentColor || color,
405
+ strokeWidth: "1.5",
406
+ strokeLinecap: "round"
407
+ }
408
+ ),
409
+ /* @__PURE__ */ jsxRuntime.jsx(
410
+ "path",
411
+ {
412
+ d: "M6 17c0 1 1 3 1 3M12 17c0 1.5 0 3 0 3M18 17c0 1-1 3-1 3",
413
+ stroke: accentColor || "#93c5fd",
414
+ strokeWidth: "2",
415
+ strokeLinecap: "round"
416
+ }
417
+ )
418
+ ] }),
419
+ { displayName: "AirConditionerIcon" }
420
+ );
421
+ const HeaterIcon = createLifeIcon.createLifeIcon(
422
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
423
+ /* @__PURE__ */ jsxRuntime.jsx(
424
+ "rect",
425
+ {
426
+ x: "4",
427
+ y: "6",
428
+ width: "16",
429
+ height: "16",
430
+ rx: "2",
431
+ fill: variant === "outlined" ? "none" : color,
432
+ stroke: color,
433
+ strokeWidth: "2"
434
+ }
435
+ ),
436
+ /* @__PURE__ */ jsxRuntime.jsx(
437
+ "path",
438
+ {
439
+ d: "M8 10v8M12 10v8M16 10v8",
440
+ stroke: variant === "filled" ? "#fff" : accentColor || color,
441
+ strokeWidth: "2",
442
+ strokeLinecap: "round"
443
+ }
444
+ ),
445
+ /* @__PURE__ */ jsxRuntime.jsx(
446
+ "path",
447
+ {
448
+ d: "M7 2c.5 1 1 2 .5 3M12 2c.5 1 1 2 .5 3M17 2c.5 1 1 2 .5 3",
449
+ stroke: accentColor || "#f97316",
450
+ strokeWidth: "1.5",
451
+ strokeLinecap: "round"
452
+ }
453
+ )
454
+ ] }),
455
+ { displayName: "HeaterIcon" }
456
+ );
457
+ const WifiIcon = createLifeIcon.createLifeIcon(
458
+ ({ color, accentColor, variant }) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
459
+ /* @__PURE__ */ jsxRuntime.jsx(
460
+ "path",
461
+ {
462
+ d: "M5 12.55a11 11 0 0114 0",
463
+ fill: "none",
464
+ stroke: color,
465
+ strokeWidth: "2",
466
+ strokeLinecap: "round",
467
+ strokeLinejoin: "round"
468
+ }
469
+ ),
470
+ /* @__PURE__ */ jsxRuntime.jsx(
471
+ "path",
472
+ {
473
+ d: "M8.53 16.11a6 6 0 016.95 0",
474
+ fill: "none",
475
+ stroke: accentColor || color,
476
+ strokeWidth: "2",
477
+ strokeLinecap: "round",
478
+ strokeLinejoin: "round"
479
+ }
480
+ ),
481
+ /* @__PURE__ */ jsxRuntime.jsx(
482
+ "path",
483
+ {
484
+ d: "M2 8.82a15 15 0 0120 0",
485
+ fill: "none",
486
+ stroke: color,
487
+ strokeWidth: "2",
488
+ strokeLinecap: "round",
489
+ strokeLinejoin: "round"
490
+ }
491
+ ),
492
+ /* @__PURE__ */ jsxRuntime.jsx(
493
+ "circle",
494
+ {
495
+ cx: "12",
496
+ cy: "20",
497
+ r: "1",
498
+ fill: variant === "filled" ? color : "none",
499
+ stroke: color,
500
+ strokeWidth: "2"
501
+ }
502
+ )
503
+ ] }),
504
+ { displayName: "WifiIcon" }
505
+ );
506
+ const home = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
507
+ __proto__: null,
508
+ AirConditionerIcon,
509
+ BathtubIcon,
510
+ BedIcon,
511
+ BuildingIcon,
512
+ DoorIcon,
513
+ FenceIcon,
514
+ GarageIcon,
515
+ GardenIcon,
516
+ HeaterIcon,
517
+ HouseIcon,
518
+ KeyIcon,
519
+ KitchenIcon,
520
+ LampIcon,
521
+ SofaIcon,
522
+ WifiIcon
523
+ }, Symbol.toStringTag, { value: "Module" }));
524
+ exports.AirConditionerIcon = AirConditionerIcon;
525
+ exports.BathtubIcon = BathtubIcon;
526
+ exports.BedIcon = BedIcon;
527
+ exports.BuildingIcon = BuildingIcon;
528
+ exports.DoorIcon = DoorIcon;
529
+ exports.FenceIcon = FenceIcon;
530
+ exports.GarageIcon = GarageIcon;
531
+ exports.GardenIcon = GardenIcon;
532
+ exports.HeaterIcon = HeaterIcon;
533
+ exports.HouseIcon = HouseIcon;
534
+ exports.KeyIcon = KeyIcon;
535
+ exports.KitchenIcon = KitchenIcon;
536
+ exports.LampIcon = LampIcon;
537
+ exports.SofaIcon = SofaIcon;
538
+ exports.WifiIcon = WifiIcon;
539
+ exports.home = home;
540
+ //# sourceMappingURL=home-M8Wx9F25.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"home-M8Wx9F25.cjs","sources":["../src/home.tsx"],"sourcesContent":["/**\r\n * @file home.tsx\r\n * @description Home, building and interior icons\r\n */\r\n\r\nimport React from 'react';\r\n\r\nimport { createLifeIcon } from './createLifeIcon';\r\nimport type { LifeIconProps } from './types';\r\n\r\n/* ─── House Icon ─── */\r\nexport const HouseIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path\r\n d=\"M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2V9z\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n />\r\n <polyline\r\n points=\"9,22 9,12 15,12 15,22\"\r\n fill={accentColor || (variant === 'filled' ? '#fff' : 'none')}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'HouseIcon' },\r\n);\r\n\r\n/* ─── Building Icon ─── */\r\nexport const BuildingIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <rect\r\n x=\"4\"\r\n y=\"2\"\r\n width=\"16\"\r\n height=\"20\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M9 22v-4h6v4\"\r\n fill={accentColor || (variant === 'filled' ? '#fff' : 'none')}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n strokeWidth=\"2\"\r\n />\r\n <rect\r\n x=\"7\"\r\n y=\"5\"\r\n width=\"3\"\r\n height=\"3\"\r\n fill={variant === 'filled' ? '#fff' : 'none'}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n />\r\n <rect\r\n x=\"14\"\r\n y=\"5\"\r\n width=\"3\"\r\n height=\"3\"\r\n fill={variant === 'filled' ? '#fff' : 'none'}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n />\r\n <rect\r\n x=\"7\"\r\n y=\"11\"\r\n width=\"3\"\r\n height=\"3\"\r\n fill={variant === 'filled' ? '#fff' : 'none'}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n />\r\n <rect\r\n x=\"14\"\r\n y=\"11\"\r\n width=\"3\"\r\n height=\"3\"\r\n fill={variant === 'filled' ? '#fff' : 'none'}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n />\r\n </>\r\n ),\r\n { displayName: 'BuildingIcon' },\r\n);\r\n\r\n/* ─── Door Icon ─── */\r\nexport const DoorIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <rect\r\n x=\"5\"\r\n y=\"2\"\r\n width=\"14\"\r\n height=\"20\"\r\n rx=\"1\"\r\n fill={variant === 'outlined' ? 'none' : accentColor || '#a78bfa'}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <circle cx=\"15\" cy=\"12\" r=\"1\" fill={color} />\r\n <path d=\"M5 22h14\" stroke={color} strokeWidth=\"2\" strokeLinecap=\"round\" />\r\n </>\r\n ),\r\n { displayName: 'DoorIcon' },\r\n);\r\n\r\n/* ─── Key Icon ─── */\r\nexport const KeyIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <circle\r\n cx=\"7.5\"\r\n cy=\"7.5\"\r\n r=\"5\"\r\n fill={variant === 'outlined' ? 'none' : accentColor || '#fcd34d'}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M11.5 11.5L22 22M19 19l3-3-3-3M16 16l-3 3\"\r\n fill=\"none\"\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'KeyIcon' },\r\n);\r\n\r\n/* ─── Bed Icon ─── */\r\nexport const BedIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path d=\"M2 4v16M22 4v16\" stroke={color} strokeWidth=\"2\" strokeLinecap=\"round\" />\r\n <path\r\n d=\"M2 16h20V10a2 2 0 00-2-2H4a2 2 0 00-2 2v6z\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path d=\"M2 10V8a2 2 0 012-2h16a2 2 0 012 2v2\" fill=\"none\" stroke={color} strokeWidth=\"2\" />\r\n <ellipse\r\n cx=\"7\"\r\n cy=\"10\"\r\n rx=\"2\"\r\n ry=\"1.5\"\r\n fill={accentColor || (variant === 'filled' ? '#fff' : 'none')}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n />\r\n </>\r\n ),\r\n { displayName: 'BedIcon' },\r\n);\r\n\r\n/* ─── Sofa Icon ─── */\r\nexport const SofaIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path\r\n d=\"M4 11V7a3 3 0 013-3h10a3 3 0 013 3v4\"\r\n fill={variant === 'outlined' ? 'none' : accentColor || color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M2 11v6a2 2 0 002 2h16a2 2 0 002-2v-6a2 2 0 00-2-2H4a2 2 0 00-2 2z\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path d=\"M4 19v2M20 19v2M8 15h8\" stroke={color} strokeWidth=\"2\" strokeLinecap=\"round\" />\r\n </>\r\n ),\r\n { displayName: 'SofaIcon' },\r\n);\r\n\r\n/* ─── Lamp Icon ─── */\r\nexport const LampIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path\r\n d=\"M9 2h6l-1 8H10L9 2z\"\r\n fill={variant === 'outlined' ? 'none' : accentColor || '#fcd34d'}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinejoin=\"round\"\r\n />\r\n <path d=\"M12 10v8M8 22h8\" stroke={color} strokeWidth=\"2\" strokeLinecap=\"round\" />\r\n <ellipse\r\n cx=\"12\"\r\n cy=\"18\"\r\n rx=\"3\"\r\n ry=\"1\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'LampIcon' },\r\n);\r\n\r\n/* ─── Kitchen Icon ─── */\r\nexport const KitchenIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <rect\r\n x=\"3\"\r\n y=\"10\"\r\n width=\"18\"\r\n height=\"12\"\r\n rx=\"1\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path d=\"M3 14h18\" stroke={variant === 'filled' ? '#fff' : color} strokeWidth=\"2\" />\r\n <path\r\n d=\"M7 2h2v2a2 2 0 01-2 2 2 2 0 01-2-2V4h2zM12 2h2v2a2 2 0 01-2 2 2 2 0 01-2-2V4h2zM17 2h2v2a2 2 0 01-2 2 2 2 0 01-2-2V4h2z\"\r\n fill=\"none\"\r\n stroke={accentColor || color}\r\n strokeWidth=\"1.5\"\r\n strokeLinecap=\"round\"\r\n />\r\n <rect\r\n x=\"6\"\r\n y=\"17\"\r\n width=\"5\"\r\n height=\"4\"\r\n fill={variant === 'filled' ? '#fff' : 'none'}\r\n stroke={variant === 'filled' ? '#fff' : color}\r\n strokeWidth=\"1.5\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'KitchenIcon' },\r\n);\r\n\r\n/* ─── Bathtub Icon ─── */\r\nexport const BathtubIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path\r\n d=\"M2 13h20v4a4 4 0 01-4 4H6a4 4 0 01-4-4v-4z\"\r\n fill={variant === 'outlined' ? 'none' : accentColor || '#93c5fd'}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M6 13V5a2 2 0 012-2 2 2 0 012 2v1\"\r\n fill=\"none\"\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n />\r\n <circle cx=\"9\" cy=\"7\" r=\"1\" fill={color} />\r\n <path d=\"M6 21v1M18 21v1\" stroke={color} strokeWidth=\"2\" strokeLinecap=\"round\" />\r\n </>\r\n ),\r\n { displayName: 'BathtubIcon' },\r\n);\r\n\r\n/* ─── Garage Icon ─── */\r\nexport const GarageIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path\r\n d=\"M3 10l9-7 9 7\"\r\n fill=\"none\"\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n />\r\n <rect\r\n x=\"4\"\r\n y=\"10\"\r\n width=\"16\"\r\n height=\"12\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M6 14h12M6 17h12M6 20h12\"\r\n stroke={accentColor || (variant === 'filled' ? '#fff' : color)}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'GarageIcon' },\r\n);\r\n\r\n/* ─── Garden Icon ─── */\r\nexport const GardenIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path d=\"M12 22V8\" stroke={accentColor || '#22c55e'} strokeWidth=\"2\" strokeLinecap=\"round\" />\r\n <path\r\n d=\"M4 11c0-3 3-5 8-5s8 2 8 5c0 4-4 2-8 2s-8 2-8-2z\"\r\n fill={variant === 'outlined' ? 'none' : accentColor || '#86efac'}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M8 2c0 3 2 5 4 6M16 2c0 3-2 5-4 6\"\r\n fill=\"none\"\r\n stroke={accentColor || '#22c55e'}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n />\r\n <ellipse\r\n cx=\"12\"\r\n cy=\"21\"\r\n rx=\"4\"\r\n ry=\"1\"\r\n fill={variant === 'outlined' ? 'none' : '#92400e'}\r\n stroke={color}\r\n strokeWidth=\"1\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'GardenIcon' },\r\n);\r\n\r\n/* ─── Fence Icon ─── */\r\nexport const FenceIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path\r\n d=\"M4 6l2-4 2 4M10 6l2-4 2 4M16 6l2-4 2 4\"\r\n fill={variant === 'outlined' ? 'none' : accentColor || color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinejoin=\"round\"\r\n />\r\n <path d=\"M4 6v14M10 6v14M16 6v14M22 6v14\" stroke={color} strokeWidth=\"2\" />\r\n <path d=\"M4 10h18M4 16h18\" stroke={color} strokeWidth=\"2\" strokeLinecap=\"round\" />\r\n </>\r\n ),\r\n { displayName: 'FenceIcon' },\r\n);\r\n\r\n/* ─── AirConditioner Icon ─── */\r\nexport const AirConditionerIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <rect\r\n x=\"2\"\r\n y=\"4\"\r\n width=\"20\"\r\n height=\"10\"\r\n rx=\"2\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M5 8h14M5 11h14\"\r\n stroke={variant === 'filled' ? '#fff' : accentColor || color}\r\n strokeWidth=\"1.5\"\r\n strokeLinecap=\"round\"\r\n />\r\n <path\r\n d=\"M6 17c0 1 1 3 1 3M12 17c0 1.5 0 3 0 3M18 17c0 1-1 3-1 3\"\r\n stroke={accentColor || '#93c5fd'}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'AirConditionerIcon' },\r\n);\r\n\r\n/* ─── Heater Icon ─── */\r\nexport const HeaterIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <rect\r\n x=\"4\"\r\n y=\"6\"\r\n width=\"16\"\r\n height=\"16\"\r\n rx=\"2\"\r\n fill={variant === 'outlined' ? 'none' : color}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n <path\r\n d=\"M8 10v8M12 10v8M16 10v8\"\r\n stroke={variant === 'filled' ? '#fff' : accentColor || color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n />\r\n <path\r\n d=\"M7 2c.5 1 1 2 .5 3M12 2c.5 1 1 2 .5 3M17 2c.5 1 1 2 .5 3\"\r\n stroke={accentColor || '#f97316'}\r\n strokeWidth=\"1.5\"\r\n strokeLinecap=\"round\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'HeaterIcon' },\r\n);\r\n\r\n/* ─── Wifi Icon ─── */\r\nexport const WifiIcon = createLifeIcon(\r\n ({ color, accentColor, variant }: LifeIconProps) => (\r\n <>\r\n <path\r\n d=\"M5 12.55a11 11 0 0114 0\"\r\n fill=\"none\"\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n />\r\n <path\r\n d=\"M8.53 16.11a6 6 0 016.95 0\"\r\n fill=\"none\"\r\n stroke={accentColor || color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n />\r\n <path\r\n d=\"M2 8.82a15 15 0 0120 0\"\r\n fill=\"none\"\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n />\r\n <circle\r\n cx=\"12\"\r\n cy=\"20\"\r\n r=\"1\"\r\n fill={variant === 'filled' ? color : 'none'}\r\n stroke={color}\r\n strokeWidth=\"2\"\r\n />\r\n </>\r\n ),\r\n { displayName: 'WifiIcon' },\r\n);\r\n"],"names":["createLifeIcon","jsxs","Fragment","jsx"],"mappings":"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"}
package/dist/home.cjs ADDED
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ require("react/jsx-runtime");
4
+ require("./createLifeIcon-BAJdO67Z.cjs");
5
+ const home = require("./home-M8Wx9F25.cjs");
6
+ exports.AirConditionerIcon = home.AirConditionerIcon;
7
+ exports.BathtubIcon = home.BathtubIcon;
8
+ exports.BedIcon = home.BedIcon;
9
+ exports.BuildingIcon = home.BuildingIcon;
10
+ exports.DoorIcon = home.DoorIcon;
11
+ exports.FenceIcon = home.FenceIcon;
12
+ exports.GarageIcon = home.GarageIcon;
13
+ exports.GardenIcon = home.GardenIcon;
14
+ exports.HeaterIcon = home.HeaterIcon;
15
+ exports.HouseIcon = home.HouseIcon;
16
+ exports.KeyIcon = home.KeyIcon;
17
+ exports.KitchenIcon = home.KitchenIcon;
18
+ exports.LampIcon = home.LampIcon;
19
+ exports.SofaIcon = home.SofaIcon;
20
+ exports.WifiIcon = home.WifiIcon;
21
+ //# sourceMappingURL=home.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"home.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
package/dist/home.d.ts ADDED
@@ -0,0 +1,18 @@
1
+ import { default as React } from 'react';
2
+ import { LifeIconProps } from './types';
3
+ export declare const HouseIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export declare const BuildingIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
5
+ export declare const DoorIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
6
+ export declare const KeyIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
7
+ export declare const BedIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
8
+ export declare const SofaIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
9
+ export declare const LampIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
10
+ export declare const KitchenIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
11
+ export declare const BathtubIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
12
+ export declare const GarageIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
13
+ export declare const GardenIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
14
+ export declare const FenceIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
15
+ export declare const AirConditionerIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
16
+ export declare const HeaterIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
17
+ export declare const WifiIcon: React.ForwardRefExoticComponent<LifeIconProps & React.RefAttributes<SVGSVGElement>>;
18
+ //# sourceMappingURL=home.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"home.d.ts","sourceRoot":"","sources":["../src/home.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAG7C,eAAO,MAAM,SAAS,qFAsBrB,CAAC;AAGF,eAAO,MAAM,YAAY,qFAqDxB,CAAC;AAGF,eAAO,MAAM,QAAQ,qFAkBpB,CAAC;AAGF,eAAO,MAAM,OAAO,qFAsBnB,CAAC;AAGF,eAAO,MAAM,OAAO,qFAsBnB,CAAC;AAGF,eAAO,MAAM,QAAQ,qFAmBpB,CAAC;AAGF,eAAO,MAAM,QAAQ,qFAuBpB,CAAC;AAGF,eAAO,MAAM,WAAW,qFAiCvB,CAAC;AAGF,eAAO,MAAM,WAAW,qFAqBvB,CAAC;AAGF,eAAO,MAAM,UAAU,qFA6BtB,CAAC;AAGF,eAAO,MAAM,UAAU,qFA6BtB,CAAC;AAGF,eAAO,MAAM,SAAS,qFAerB,CAAC;AAGF,eAAO,MAAM,kBAAkB,qFA4B9B,CAAC;AAGF,eAAO,MAAM,UAAU,qFA4BtB,CAAC;AAGF,eAAO,MAAM,QAAQ,qFAsCpB,CAAC"}
package/dist/home.js ADDED
@@ -0,0 +1,21 @@
1
+ import "react/jsx-runtime";
2
+ import "./createLifeIcon-BjwgNM6z.js";
3
+ import { A, B, a, b, D, F, G, c, H, d, K, e, L, S, W } from "./home-DIQE0xSu.js";
4
+ export {
5
+ A as AirConditionerIcon,
6
+ B as BathtubIcon,
7
+ a as BedIcon,
8
+ b as BuildingIcon,
9
+ D as DoorIcon,
10
+ F as FenceIcon,
11
+ G as GarageIcon,
12
+ c as GardenIcon,
13
+ H as HeaterIcon,
14
+ d as HouseIcon,
15
+ K as KeyIcon,
16
+ e as KitchenIcon,
17
+ L as LampIcon,
18
+ S as SofaIcon,
19
+ W as WifiIcon
20
+ };
21
+ //# sourceMappingURL=home.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"home.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}