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.
- package/dist/fonts/HuspyIcons.css +141 -72
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +91 -68
- package/dist/fonts/HuspyIcons.ts +138 -69
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +91 -68
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +48 -2
- package/dist/react/index.d.ts +48 -2
- package/dist/react/index.js +2463 -758
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +2408 -703
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +92 -69
- package/src/react/Accessibility.tsx +50 -0
- package/src/react/AirConditioner.tsx +62 -0
- package/src/react/Archive.tsx +38 -0
- package/src/react/BalconyWindow.tsx +24 -0
- package/src/react/Bath.tsx +50 -0
- package/src/react/Closet.tsx +24 -0
- package/src/react/DoorOpen.tsx +50 -0
- package/src/react/Electric.tsx +56 -0
- package/src/react/Garden.tsx +44 -0
- package/src/react/GasHeating.tsx +62 -0
- package/src/react/Heating.tsx +56 -0
- package/src/react/Icon.tsx +70 -1
- package/src/react/Image.tsx +38 -0
- package/src/react/Lift.tsx +24 -0
- package/src/react/MagicWand.tsx +68 -0
- package/src/react/Outside.tsx +68 -0
- package/src/react/Parking.tsx +50 -0
- package/src/react/Patio.tsx +74 -0
- package/src/react/Pet.tsx +56 -0
- package/src/react/PinMapSolid.tsx +26 -0
- package/src/react/Restaurant.tsx +32 -0
- package/src/react/SwimmingPool.tsx +56 -0
- package/src/react/Terrace.tsx +24 -0
- package/src/react/ThermometerSnowflake.tsx +56 -0
- package/src/react/index.ts +23 -0
- package/src/react/index.tsx +23 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgGasHeating = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M6.76928 3.59855C6.94405 3.3228 7.27712 3.19179 7.59292 3.27456C9.91113 3.88221 11.4589 6.06389 11.269 8.45044C11.228 10.2273 9.78939 11.6568 8.00912 11.6833L7.99795 11.6835C6.1996 11.6835 4.74021 10.2321 4.72715 8.43679C4.66158 7.28894 5.26279 6.20479 6.2731 5.65295C6.48864 5.53522 6.74815 5.53048 6.96785 5.64025C7.1068 5.70969 7.21869 5.81936 7.29109 5.9521C7.33639 5.43101 7.17834 4.90009 6.82783 4.48168C6.61818 4.23142 6.59451 3.87429 6.76928 3.59855ZM8.79611 5.64286C8.82073 6.28666 8.66888 6.93912 8.3338 7.52435C8.21037 7.73993 7.9882 7.88041 7.74053 7.89948C7.25439 7.93693 6.79718 7.76973 6.45669 7.46817C6.28916 7.72917 6.20441 8.04158 6.22547 8.36355C6.22653 8.37984 6.22706 8.39617 6.22706 8.4125C6.22706 9.38867 7.0169 10.1804 7.99237 10.1834C8.96814 10.1659 9.75483 9.37761 9.76964 8.40112C9.7699 8.3838 9.77077 8.36649 9.77223 8.34922C9.85957 7.31776 9.48067 6.33987 8.79611 5.64286Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M14.359 3.59862C14.5338 3.32283 14.8669 3.19178 15.1827 3.27456C17.5009 3.88221 19.0486 6.06389 18.8588 8.45044C18.8178 10.2273 17.3792 11.6568 15.5989 11.6833L15.5877 11.6835C13.7894 11.6835 12.33 10.2321 12.3169 8.43679C12.2514 7.28894 12.8526 6.20479 13.8629 5.65295C14.0783 5.53527 14.3377 5.53048 14.5574 5.64012C14.6962 5.70944 14.8081 5.81896 14.8806 5.95153C14.9261 5.43072 14.7682 4.89998 14.4177 4.48182C14.208 4.23159 14.1843 3.87442 14.359 3.59862ZM16.3857 5.64266C16.4102 6.28691 16.2578 6.93977 15.9217 7.52509C15.7979 7.74075 15.5753 7.88103 15.3273 7.8996C14.8423 7.93593 14.3864 7.76877 14.0467 7.46789C13.879 7.72894 13.7942 8.04147 13.8153 8.36355C13.8163 8.37984 13.8169 8.39617 13.8169 8.4125C13.8169 9.38867 14.6067 10.1804 15.5822 10.1834C16.5579 10.1659 17.3446 9.37761 17.3594 8.40112C17.3597 8.3838 17.3606 8.36649 17.362 8.34922C17.4494 7.31767 17.0704 6.33969 16.3857 5.64266Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M3.25 15.1335C3.25 14.4247 3.82457 13.8502 4.53333 13.8502H19.4667C20.1754 13.8502 20.75 14.4247 20.75 15.1335V20.4668C20.75 21.1756 20.1754 21.7502 19.4667 21.7502H4.53333C3.82457 21.7502 3.25 21.1756 3.25 20.4668V15.1335ZM4.75 15.3502V20.2502H19.25V15.3502H4.75Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M6.44995 17.8001C6.44995 16.7968 7.2633 15.9835 8.26662 15.9835C9.26994 15.9835 10.0833 16.7968 10.0833 17.8001C10.0833 18.8034 9.26994 19.6168 8.26662 19.6168C7.2633 19.6168 6.44995 18.8034 6.44995 17.8001ZM8.26662 17.4835C8.09173 17.4835 7.94995 17.6252 7.94995 17.8001C7.94995 17.975 8.09173 18.1168 8.26662 18.1168C8.44151 18.1168 8.58328 17.975 8.58328 17.8001C8.58328 17.6252 8.44151 17.4835 8.26662 17.4835Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M13.9167 17.8001C13.9167 16.7968 14.7301 15.9835 15.7334 15.9835C16.7367 15.9835 17.5501 16.7968 17.5501 17.8001C17.5501 18.8034 16.7367 19.6168 15.7334 19.6168C14.7301 19.6168 13.9167 18.8034 13.9167 17.8001ZM15.7334 17.4835C15.5585 17.4835 15.4167 17.6252 15.4167 17.8001C15.4167 17.975 15.5585 18.1168 15.7334 18.1168C15.9083 18.1168 16.0501 17.975 16.0501 17.8001C16.0501 17.6252 15.9083 17.4835 15.7334 17.4835Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M8.2666 12.6802C8.73788 12.6802 9.11994 13.0622 9.11994 13.5335V14.4001C9.11994 14.8713 8.73788 15.2534 8.2666 15.2534C7.79532 15.2534 7.41327 14.8713 7.41327 14.4001V13.5335C7.41327 13.0622 7.79532 12.6802 8.2666 12.6802Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
fillRule="evenodd"
|
|
54
|
+
clipRule="evenodd"
|
|
55
|
+
d="M15.7334 12.7835C16.1476 12.7835 16.4834 13.1193 16.4834 13.5335V14.6002C16.4834 15.0144 16.1476 15.3502 15.7334 15.3502C15.3192 15.3502 14.9834 15.0144 14.9834 14.6002V13.5335C14.9834 13.1193 15.3192 12.7835 15.7334 12.7835Z"
|
|
56
|
+
fill="currentColor"
|
|
57
|
+
/>
|
|
58
|
+
</svg>
|
|
59
|
+
);
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export default SvgGasHeating;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgHeating = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M8.92141 9.01012C9.81143 8.33767 10.9008 7.98216 12.0161 8.00013C12.5683 8.00903 13.0088 8.4639 12.9999 9.01611C12.991 9.56832 12.5361 10.0088 11.9839 9.99987C11.3147 9.98909 10.6611 10.2024 10.1271 10.6059C9.59306 11.0093 9.2093 11.5798 9.03685 12.2265C8.8644 12.8732 8.91315 13.559 9.17536 14.1748C9.43757 14.7906 9.89817 15.301 10.4839 15.6249C10.9672 15.8921 11.1424 16.5006 10.8751 16.9839C10.6079 17.4672 9.99943 17.6424 9.51611 17.3751C8.53991 16.8354 7.77224 15.9846 7.33523 14.9583C6.89822 13.932 6.81696 12.789 7.10438 11.7112C7.3918 10.6333 8.03139 9.68258 8.92141 9.01012Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M12 2C12.5523 2 13 2.44772 13 3V5C13 5.55228 12.5523 6 12 6C11.4477 6 11 5.55228 11 5V3C11 2.44772 11.4477 2 12 2Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M7.30711 17.6929C7.69763 18.0834 7.69763 18.7166 7.30711 19.1071L5.90711 20.5071C5.51658 20.8976 4.88342 20.8976 4.49289 20.5071C4.10237 20.1166 4.10237 19.4834 4.49289 19.0929L5.89289 17.6929C6.28342 17.3024 6.91658 17.3024 7.30711 17.6929Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M18 3C17.7348 3 17.4804 3.10536 17.2929 3.29289C17.1054 3.48043 17 3.73478 17 4V14.54C17 14.8973 16.8094 15.2274 16.5 15.406C15.9281 15.7362 15.4811 16.2459 15.2284 16.8561C14.9756 17.4662 14.9313 18.1427 15.1022 18.7806C15.2731 19.4185 15.6498 19.9821 16.1737 20.3842C16.6976 20.7862 17.3396 21.0041 18 21.0041C18.6604 21.0041 19.3024 20.7862 19.8263 20.3842C20.3502 19.9821 20.7269 19.4185 20.8978 18.7806C21.0687 18.1427 21.0244 17.4662 20.7716 16.8561C20.5189 16.2459 20.0719 15.7362 19.5 15.406C19.1906 15.2274 19 14.8973 19 14.54V4C19 3.73478 18.8946 3.48043 18.7071 3.29289C18.5196 3.10536 18.2652 3 18 3ZM15.8787 1.87868C16.4413 1.31607 17.2043 1 18 1C18.7957 1 19.5587 1.31607 20.1213 1.87868C20.6839 2.44129 21 3.20435 21 4V14.0041C21.7141 14.5397 22.275 15.2592 22.6194 16.0907C23.0406 17.1076 23.1145 18.235 22.8296 19.2982C22.5448 20.3614 21.917 21.3008 21.0438 21.9709C20.1706 22.6409 19.1007 23.0041 18 23.0041C16.8993 23.0041 15.8294 22.6409 14.9562 21.9709C14.083 21.3008 13.4552 20.3614 13.1704 19.2982C12.8855 18.235 12.9594 17.1076 13.3806 16.0907C13.725 15.2592 14.2859 14.5397 15 14.0041V4C15 3.20435 15.3161 2.44129 15.8787 1.87868Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M1 13C1 12.4477 1.44772 12 2 12H4C4.55228 12 5 12.4477 5 13C5 13.5523 4.55228 14 4 14H2C1.44772 14 1 13.5523 1 13Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M4.22289 5.22289C4.61342 4.83237 5.24658 4.83237 5.63711 5.22289L7.04711 6.63289C7.43763 7.02342 7.43763 7.65658 7.04711 8.04711C6.65658 8.43763 6.02342 8.43763 5.63289 8.04711L4.22289 6.63711C3.83237 6.24658 3.83237 5.61342 4.22289 5.22289Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
</svg>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export default SvgHeating;
|
package/src/react/Icon.tsx
CHANGED
|
@@ -5,8 +5,11 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
5
5
|
* Icon imports - using dynamic imports for tree-shaking
|
|
6
6
|
* Auto-generated - do not edit manually
|
|
7
7
|
*/
|
|
8
|
+
// Icon: accessibility
|
|
8
9
|
// Icon: add-note
|
|
10
|
+
// Icon: air-conditioner
|
|
9
11
|
// Icon: alert-triangle
|
|
12
|
+
// Icon: archive
|
|
10
13
|
// Icon: arrow-down
|
|
11
14
|
// Icon: arrow-down-left
|
|
12
15
|
// Icon: arrow-down-right
|
|
@@ -16,6 +19,8 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
16
19
|
// Icon: arrow-up-down
|
|
17
20
|
// Icon: arrow-up-left
|
|
18
21
|
// Icon: arrow-up-right
|
|
22
|
+
// Icon: balcony-window
|
|
23
|
+
// Icon: bath
|
|
19
24
|
// Icon: bed-double
|
|
20
25
|
// Icon: bell
|
|
21
26
|
// Icon: building
|
|
@@ -28,8 +33,11 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
28
33
|
// Icon: chevron-left
|
|
29
34
|
// Icon: chevron-right
|
|
30
35
|
// Icon: chevron-up
|
|
36
|
+
// Icon: closet
|
|
31
37
|
// Icon: collections
|
|
38
|
+
// Icon: door-open
|
|
32
39
|
// Icon: edit
|
|
40
|
+
// Icon: electric
|
|
33
41
|
// Icon: explore-filled
|
|
34
42
|
// Icon: explore-linear
|
|
35
43
|
// Icon: eye-hidden
|
|
@@ -44,35 +52,50 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
44
52
|
// Icon: file-text
|
|
45
53
|
// Icon: filter
|
|
46
54
|
// Icon: fingerprint-android
|
|
55
|
+
// Icon: garden
|
|
56
|
+
// Icon: gas-heating
|
|
57
|
+
// Icon: heating
|
|
47
58
|
// Icon: help-circle
|
|
48
59
|
// Icon: home-filled
|
|
49
60
|
// Icon: home-linear
|
|
50
61
|
// Icon: icon-slot
|
|
62
|
+
// Icon: image
|
|
51
63
|
// Icon: info
|
|
52
64
|
// Icon: keys01
|
|
53
65
|
// Icon: leads-filled
|
|
54
66
|
// Icon: leads-linear
|
|
67
|
+
// Icon: lift
|
|
55
68
|
// Icon: lock
|
|
56
69
|
// Icon: logout
|
|
70
|
+
// Icon: magic-wand
|
|
57
71
|
// Icon: mail
|
|
58
72
|
// Icon: map-pin
|
|
59
73
|
// Icon: more-horizontal
|
|
60
74
|
// Icon: mortgage
|
|
61
75
|
// Icon: note
|
|
62
76
|
// Icon: notes
|
|
77
|
+
// Icon: outside
|
|
78
|
+
// Icon: parking
|
|
79
|
+
// Icon: patio
|
|
63
80
|
// Icon: payments
|
|
64
81
|
// Icon: pencil-line
|
|
82
|
+
// Icon: pet
|
|
65
83
|
// Icon: phone-linear
|
|
84
|
+
// Icon: pin-map-solid
|
|
66
85
|
// Icon: plus
|
|
67
86
|
// Icon: promotion
|
|
68
87
|
// Icon: properties-filled
|
|
69
88
|
// Icon: properties-linear
|
|
70
89
|
// Icon: rent
|
|
90
|
+
// Icon: restaurant
|
|
71
91
|
// Icon: sale
|
|
72
92
|
// Icon: search
|
|
73
93
|
// Icon: search-x
|
|
74
94
|
// Icon: share
|
|
75
95
|
// Icon: size3d
|
|
96
|
+
// Icon: swimming-pool
|
|
97
|
+
// Icon: terrace
|
|
98
|
+
// Icon: thermometer-snowflake
|
|
76
99
|
// Icon: trash2
|
|
77
100
|
// Icon: user
|
|
78
101
|
// Icon: whatsapp
|
|
@@ -80,7 +103,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
80
103
|
/**
|
|
81
104
|
* Available icon names
|
|
82
105
|
*/
|
|
83
|
-
export type IconName = 'add-note' | 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'bed-double' | 'bell' | 'building' | 'calendar' | 'cancel' | 'cancel-circle-solid' | 'check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'collections' | 'edit' | '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' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'info' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'map-pin' | 'more-horizontal' | 'mortgage' | 'note' | 'notes' | 'payments' | 'pencil-line' | 'phone-linear' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'trash2' | 'user' | 'whatsapp';
|
|
106
|
+
export 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' | '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' | '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' | 'trash2' | 'user' | 'whatsapp';
|
|
84
107
|
|
|
85
108
|
/**
|
|
86
109
|
* Props for the unified Icon component
|
|
@@ -100,10 +123,16 @@ export interface IconProps extends Omit<ReactIconProps, 'size'> {
|
|
|
100
123
|
*/
|
|
101
124
|
function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
102
125
|
switch (name) {
|
|
126
|
+
case 'accessibility':
|
|
127
|
+
return import('./Accessibility').then(m => m.default);
|
|
103
128
|
case 'add-note':
|
|
104
129
|
return import('./AddNote').then(m => m.default);
|
|
130
|
+
case 'air-conditioner':
|
|
131
|
+
return import('./AirConditioner').then(m => m.default);
|
|
105
132
|
case 'alert-triangle':
|
|
106
133
|
return import('./AlertTriangle').then(m => m.default);
|
|
134
|
+
case 'archive':
|
|
135
|
+
return import('./Archive').then(m => m.default);
|
|
107
136
|
case 'arrow-down':
|
|
108
137
|
return import('./ArrowDown').then(m => m.default);
|
|
109
138
|
case 'arrow-down-left':
|
|
@@ -122,6 +151,10 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
122
151
|
return import('./ArrowUpLeft').then(m => m.default);
|
|
123
152
|
case 'arrow-up-right':
|
|
124
153
|
return import('./ArrowUpRight').then(m => m.default);
|
|
154
|
+
case 'balcony-window':
|
|
155
|
+
return import('./BalconyWindow').then(m => m.default);
|
|
156
|
+
case 'bath':
|
|
157
|
+
return import('./Bath').then(m => m.default);
|
|
125
158
|
case 'bed-double':
|
|
126
159
|
return import('./BedDouble').then(m => m.default);
|
|
127
160
|
case 'bell':
|
|
@@ -146,10 +179,16 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
146
179
|
return import('./ChevronRight').then(m => m.default);
|
|
147
180
|
case 'chevron-up':
|
|
148
181
|
return import('./ChevronUp').then(m => m.default);
|
|
182
|
+
case 'closet':
|
|
183
|
+
return import('./Closet').then(m => m.default);
|
|
149
184
|
case 'collections':
|
|
150
185
|
return import('./Collections').then(m => m.default);
|
|
186
|
+
case 'door-open':
|
|
187
|
+
return import('./DoorOpen').then(m => m.default);
|
|
151
188
|
case 'edit':
|
|
152
189
|
return import('./Edit').then(m => m.default);
|
|
190
|
+
case 'electric':
|
|
191
|
+
return import('./Electric').then(m => m.default);
|
|
153
192
|
case 'explore-filled':
|
|
154
193
|
return import('./ExploreFilled').then(m => m.default);
|
|
155
194
|
case 'explore-linear':
|
|
@@ -178,6 +217,12 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
178
217
|
return import('./Filter').then(m => m.default);
|
|
179
218
|
case 'fingerprint-android':
|
|
180
219
|
return import('./FingerprintAndroid').then(m => m.default);
|
|
220
|
+
case 'garden':
|
|
221
|
+
return import('./Garden').then(m => m.default);
|
|
222
|
+
case 'gas-heating':
|
|
223
|
+
return import('./GasHeating').then(m => m.default);
|
|
224
|
+
case 'heating':
|
|
225
|
+
return import('./Heating').then(m => m.default);
|
|
181
226
|
case 'help-circle':
|
|
182
227
|
return import('./HelpCircle').then(m => m.default);
|
|
183
228
|
case 'home-filled':
|
|
@@ -186,6 +231,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
186
231
|
return import('./HomeLinear').then(m => m.default);
|
|
187
232
|
case 'icon-slot':
|
|
188
233
|
return import('./IconSlot').then(m => m.default);
|
|
234
|
+
case 'image':
|
|
235
|
+
return import('./Image').then(m => m.default);
|
|
189
236
|
case 'info':
|
|
190
237
|
return import('./Info').then(m => m.default);
|
|
191
238
|
case 'keys01':
|
|
@@ -194,10 +241,14 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
194
241
|
return import('./LeadsFilled').then(m => m.default);
|
|
195
242
|
case 'leads-linear':
|
|
196
243
|
return import('./LeadsLinear').then(m => m.default);
|
|
244
|
+
case 'lift':
|
|
245
|
+
return import('./Lift').then(m => m.default);
|
|
197
246
|
case 'lock':
|
|
198
247
|
return import('./Lock').then(m => m.default);
|
|
199
248
|
case 'logout':
|
|
200
249
|
return import('./Logout').then(m => m.default);
|
|
250
|
+
case 'magic-wand':
|
|
251
|
+
return import('./MagicWand').then(m => m.default);
|
|
201
252
|
case 'mail':
|
|
202
253
|
return import('./Mail').then(m => m.default);
|
|
203
254
|
case 'map-pin':
|
|
@@ -210,12 +261,22 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
210
261
|
return import('./Note').then(m => m.default);
|
|
211
262
|
case 'notes':
|
|
212
263
|
return import('./Notes').then(m => m.default);
|
|
264
|
+
case 'outside':
|
|
265
|
+
return import('./Outside').then(m => m.default);
|
|
266
|
+
case 'parking':
|
|
267
|
+
return import('./Parking').then(m => m.default);
|
|
268
|
+
case 'patio':
|
|
269
|
+
return import('./Patio').then(m => m.default);
|
|
213
270
|
case 'payments':
|
|
214
271
|
return import('./Payments').then(m => m.default);
|
|
215
272
|
case 'pencil-line':
|
|
216
273
|
return import('./PencilLine').then(m => m.default);
|
|
274
|
+
case 'pet':
|
|
275
|
+
return import('./Pet').then(m => m.default);
|
|
217
276
|
case 'phone-linear':
|
|
218
277
|
return import('./PhoneLinear').then(m => m.default);
|
|
278
|
+
case 'pin-map-solid':
|
|
279
|
+
return import('./PinMapSolid').then(m => m.default);
|
|
219
280
|
case 'plus':
|
|
220
281
|
return import('./Plus').then(m => m.default);
|
|
221
282
|
case 'promotion':
|
|
@@ -226,6 +287,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
226
287
|
return import('./PropertiesLinear').then(m => m.default);
|
|
227
288
|
case 'rent':
|
|
228
289
|
return import('./Rent').then(m => m.default);
|
|
290
|
+
case 'restaurant':
|
|
291
|
+
return import('./Restaurant').then(m => m.default);
|
|
229
292
|
case 'sale':
|
|
230
293
|
return import('./Sale').then(m => m.default);
|
|
231
294
|
case 'search':
|
|
@@ -236,6 +299,12 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
236
299
|
return import('./Share').then(m => m.default);
|
|
237
300
|
case 'size3d':
|
|
238
301
|
return import('./Size3D').then(m => m.default);
|
|
302
|
+
case 'swimming-pool':
|
|
303
|
+
return import('./SwimmingPool').then(m => m.default);
|
|
304
|
+
case 'terrace':
|
|
305
|
+
return import('./Terrace').then(m => m.default);
|
|
306
|
+
case 'thermometer-snowflake':
|
|
307
|
+
return import('./ThermometerSnowflake').then(m => m.default);
|
|
239
308
|
case 'trash2':
|
|
240
309
|
return import('./Trash2').then(m => m.default);
|
|
241
310
|
case 'user':
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgImage = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M5 4C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H5ZM2 5C2 3.34315 3.34315 2 5 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V5Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M9 8C8.44772 8 8 8.44772 8 9C8 9.55228 8.44772 10 9 10C9.55228 10 10 9.55228 10 9C10 8.44772 9.55228 8 9 8ZM6 9C6 7.34315 7.34315 6 9 6C10.6569 6 12 7.34315 12 9C12 10.6569 10.6569 12 9 12C7.34315 12 6 10.6569 6 9Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M14.379 11.2068C14.9416 10.6444 15.7045 10.3284 16.5 10.3284C17.2955 10.3284 18.0584 10.6444 18.621 11.2068L21.7071 14.2929C22.0976 14.6834 22.0976 15.3166 21.7071 15.7071C21.3166 16.0976 20.6834 16.0976 20.2929 15.7071L17.207 12.6212C17.207 12.6212 17.207 12.6212 17.207 12.6212C17.0195 12.4338 16.7651 12.3284 16.5 12.3284C16.2349 12.3284 15.9806 12.4337 15.7931 12.6211C15.7931 12.6211 15.7931 12.6211 15.7931 12.6211L6.70711 21.7071C6.31658 22.0976 5.68342 22.0976 5.29289 21.7071C4.90237 21.3166 4.90237 20.6834 5.29289 20.2929L14.379 11.2068Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export default SvgImage;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgLift = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M12.9004 21.0791H15.3779V12.4785H12.9004V21.0791ZM8.62207 21.0791H11.0996V12.4785H8.62207V21.0791ZM16.4277 5.78809C16.8206 5.48406 17.3861 5.55643 17.6904 5.94922C17.9944 6.34213 17.9221 6.90761 17.5293 7.21191L15.5508 8.74512C15.2264 8.99642 14.7727 8.99635 14.4482 8.74512L12.4688 7.21191C12.0759 6.90759 12.0045 6.34214 12.3086 5.94922C12.6129 5.55639 13.1784 5.48395 13.5713 5.78809L14.999 6.89453L16.4277 5.78809ZM8.42773 5.78809C8.75207 5.53682 9.20583 5.53704 9.53027 5.78809L11.5098 7.32227C11.9025 7.62672 11.9743 8.19209 11.6699 8.58496C11.3655 8.97759 10.8 9.0494 10.4072 8.74512L8.97852 7.63867L7.55176 8.74512C7.15896 9.04943 6.59356 8.97754 6.28906 8.58496C5.98467 8.19206 6.05636 7.6267 6.44922 7.32227L8.42773 5.78809ZM17.1777 21.0791H19.9961V4.47949C19.9961 4.14823 19.7277 3.88006 19.3965 3.87988H4.60449C4.27312 3.87988 4.00488 4.14812 4.00488 4.47949V21.0791H6.82227V12.2119C6.82231 11.3309 7.55547 10.6788 8.38184 10.6787H15.6182C16.4445 10.6788 17.1777 11.3309 17.1777 12.2119V21.0791ZM21.7959 21.0996C21.7959 22.0824 20.9994 22.8798 20.0166 22.8799H3.98438C3.00151 22.8799 2.2041 22.0825 2.2041 21.0996V4.47949C2.2041 3.15401 3.27901 2.0791 4.60449 2.0791H19.3965C20.7218 2.07928 21.7959 3.15412 21.7959 4.47949V21.0996Z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default SvgLift;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgMagicWand = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M18.6491 1.17159C18.9187 1.0591 19.2079 1.00118 19.5 1.00118C19.7922 1.00118 20.0814 1.0591 20.351 1.17159C20.6197 1.28367 20.8635 1.44771 21.0685 1.65429C21.0693 1.65504 21.07 1.65579 21.0708 1.65655L22.3431 2.92881C22.5511 3.13269 22.7166 3.37588 22.8299 3.64428C22.9442 3.91508 23.0031 4.20605 23.0031 4.5C23.0031 4.79395 22.9442 5.08492 22.8299 5.35572C22.7166 5.62411 22.5511 5.86729 22.3431 6.07117L6.07121 22.343C5.86733 22.5511 5.62415 22.7165 5.35576 22.8299C5.08496 22.9442 4.79399 23.0031 4.50005 23.0031C4.2061 23.0031 3.91513 22.9442 3.64433 22.8299C3.37593 22.7165 3.13274 22.551 2.92885 22.343L1.65659 21.0707C1.65584 21.07 1.65508 21.0692 1.65433 21.0685C1.44776 20.8635 1.28372 20.6196 1.17163 20.351C1.05914 20.0814 1.00122 19.7921 1.00122 19.5C1.00122 19.2079 1.05914 18.9186 1.17163 18.649C1.28375 18.3803 1.44786 18.1364 1.65453 17.9313C1.65522 17.9306 1.65591 17.9299 1.65659 17.9293L17.9293 1.65655C17.93 1.65586 17.9307 1.65517 17.9313 1.65449C18.1364 1.44782 18.3803 1.28371 18.6491 1.17159ZM19.5 3.00118C19.4723 3.00118 19.4448 3.00668 19.4192 3.01737C19.3936 3.02806 19.3703 3.04372 19.3508 3.06345L19.3472 3.06711L3.06715 19.3471L3.0635 19.3507C3.04377 19.3703 3.0281 19.3935 3.01741 19.4191C3.00672 19.4448 3.00122 19.4722 3.00122 19.5C3.00122 19.5278 3.00672 19.5552 3.01741 19.5809C3.0281 19.6065 3.04377 19.6297 3.0635 19.6493L3.06716 19.6529L4.35678 20.9425C4.37542 20.9617 4.39764 20.977 4.42225 20.9874C4.44687 20.9977 4.47332 21.0031 4.50005 21.0031C4.52677 21.0031 4.55322 20.9977 4.57784 20.9874C4.60245 20.977 4.62474 20.9617 4.64338 20.9426L4.65287 20.9328L20.9426 4.64327C20.9617 4.62463 20.977 4.60241 20.9874 4.57779C20.9978 4.55317 21.0031 4.52672 21.0031 4.5C21.0031 4.47328 20.9978 4.44683 20.9874 4.42221C20.977 4.39759 20.9618 4.37531 20.9426 4.35667L20.9329 4.34717L19.6529 3.06711L19.6493 3.06345C19.6298 3.04372 19.6065 3.02806 19.5809 3.01737C19.5553 3.00668 19.5278 3.00118 19.5 3.00118Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M13.2929 6.29289C13.6835 5.90237 14.3166 5.90237 14.7072 6.29289L17.7072 9.29289C18.0977 9.68342 18.0977 10.3166 17.7072 10.7071C17.3166 11.0976 16.6835 11.0976 16.2929 10.7071L13.2929 7.70711C12.9024 7.31658 12.9024 6.68342 13.2929 6.29289Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M5.00005 5C5.55233 5 6.00004 5.44772 6.00004 6V10C6.00004 10.5523 5.55233 11 5.00005 11C4.44776 11 4.00005 10.5523 4.00005 10V6C4.00005 5.44772 4.44776 5 5.00005 5Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M19 13C19.5523 13 20 13.4477 20 14V18C20 18.5523 19.5523 19 19 19C18.4478 19 18 18.5523 18 18V14C18 13.4477 18.4478 13 19 13Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M10 1C10.5523 1 11 1.44772 11 2V4C11 4.55228 10.5523 5 10 5C9.44776 5 9.00004 4.55228 9.00004 4V2C9.00004 1.44772 9.44776 1 10 1Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M2.00005 8C2.00005 7.44772 2.44776 7 3.00005 7H7.00004C7.55233 7 8.00004 7.44772 8.00004 8C8.00004 8.55228 7.55233 9 7.00004 9H3.00005C2.44776 9 2.00005 8.55228 2.00005 8Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
fillRule="evenodd"
|
|
54
|
+
clipRule="evenodd"
|
|
55
|
+
d="M16 16C16 15.4477 16.4478 15 17 15H21C21.5523 15 22 15.4477 22 16C22 16.5523 21.5523 17 21 17H17C16.4478 17 16 16.5523 16 16Z"
|
|
56
|
+
fill="currentColor"
|
|
57
|
+
/>
|
|
58
|
+
<path
|
|
59
|
+
fillRule="evenodd"
|
|
60
|
+
clipRule="evenodd"
|
|
61
|
+
d="M8.00004 3C8.00004 2.44772 8.44776 2 9.00004 2H11C11.5523 2 12 2.44772 12 3C12 3.55228 11.5523 4 11 4H9.00004C8.44776 4 8.00004 3.55228 8.00004 3Z"
|
|
62
|
+
fill="currentColor"
|
|
63
|
+
/>
|
|
64
|
+
</svg>
|
|
65
|
+
);
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export default SvgMagicWand;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgOutside = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M11.9999 2.75C7.99588 2.75 4.75 5.99583 4.75 9.99972V20.666C4.75 20.9881 5.01114 21.2493 5.33332 21.2493H18.6665C18.9887 21.2493 19.2498 20.9881 19.2498 20.666V9.99972C19.2498 5.99583 16.0039 2.75 11.9999 2.75ZM3.25 9.99972C3.25 5.16737 7.16749 1.25 11.9999 1.25C16.8323 1.25 20.7498 5.16737 20.7498 9.99972V20.666C20.7498 21.8166 19.8171 22.7493 18.6665 22.7493H5.33332C4.18275 22.7493 3.25 21.8166 3.25 20.666V9.99972Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M3.25 10.001C3.25 9.58676 3.58579 9.25098 4 9.25098H19.9998C20.414 9.25098 20.7498 9.58676 20.7498 10.001C20.7498 10.4152 20.414 10.751 19.9998 10.751H4C3.58579 10.751 3.25 10.4152 3.25 10.001Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M3.25 15.333C3.25 14.9188 3.58579 14.583 4 14.583H19.9998C20.414 14.583 20.7498 14.9188 20.7498 15.333C20.7498 15.7472 20.414 16.083 19.9998 16.083H4C3.58579 16.083 3.25 15.7472 3.25 15.333Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M11.9999 1.25C12.4141 1.25 12.75 1.58579 12.75 2V9.99972C12.75 10.4139 12.4142 10.7497 12 10.7497C11.5858 10.7497 11.25 10.4139 11.25 9.99972V2C11.25 1.58579 11.5857 1.25 11.9999 1.25Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M9.3335 9.25098C9.74771 9.25098 10.0835 9.58676 10.0835 10.001V22.0006C10.0835 22.4148 9.74771 22.7506 9.3335 22.7506C8.91928 22.7506 8.5835 22.4148 8.5835 22.0006V10.001C8.5835 9.58676 8.91928 9.25098 9.3335 9.25098Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M14.6665 9.25098C15.0807 9.25098 15.4165 9.58676 15.4165 10.001V22.0006C15.4165 22.4148 15.0807 22.7506 14.6665 22.7506C14.2523 22.7506 13.9165 22.4148 13.9165 22.0006V10.001C13.9165 9.58676 14.2523 9.25098 14.6665 9.25098Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
fillRule="evenodd"
|
|
54
|
+
clipRule="evenodd"
|
|
55
|
+
d="M5.49575 4.14672C5.77284 3.83883 6.24705 3.81387 6.55494 4.09096L12.5015 9.44277C12.8094 9.71986 12.8344 10.1941 12.5573 10.502C12.2802 10.8099 11.806 10.8348 11.4981 10.5577L5.55151 5.20591C5.24362 4.92882 5.21866 4.45461 5.49575 4.14672Z"
|
|
56
|
+
fill="currentColor"
|
|
57
|
+
/>
|
|
58
|
+
<path
|
|
59
|
+
fillRule="evenodd"
|
|
60
|
+
clipRule="evenodd"
|
|
61
|
+
d="M18.5041 4.14672C18.7812 4.45461 18.7562 4.92882 18.4483 5.20591L12.5017 10.5577C12.1938 10.8348 11.7196 10.8099 11.4425 10.502C11.1654 10.1941 11.1904 9.71986 11.4983 9.44277L17.4449 4.09096C17.7528 3.81387 18.227 3.83883 18.5041 4.14672Z"
|
|
62
|
+
fill="currentColor"
|
|
63
|
+
/>
|
|
64
|
+
</svg>
|
|
65
|
+
);
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export default SvgOutside;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgParking = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M5.15002 16C5.15002 14.7942 6.12754 13.8167 7.33336 13.8167C8.53918 13.8167 9.51669 14.7942 9.51669 16C9.51669 17.2058 8.53918 18.1833 7.33336 18.1833C6.12754 18.1833 5.15002 17.2058 5.15002 16ZM7.33336 15.5167C7.06642 15.5167 6.85002 15.733 6.85002 16C6.85002 16.2669 7.06642 16.4833 7.33336 16.4833C7.6003 16.4833 7.81669 16.2669 7.81669 16C7.81669 15.733 7.6003 15.5167 7.33336 15.5167Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M15.8167 16C15.8167 14.7942 16.7942 13.8167 18 13.8167C19.2058 13.8167 20.1834 14.7942 20.1834 16C20.1834 17.2058 19.2058 18.1833 18 18.1833C16.7942 18.1833 15.8167 17.2058 15.8167 16ZM18 15.5167C17.7331 15.5167 17.5167 15.733 17.5167 16C17.5167 16.2669 17.7331 16.4833 18 16.4833C18.267 16.4833 18.4834 16.2669 18.4834 16C18.4834 15.733 18.267 15.5167 18 15.5167Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M7.81669 16C7.81669 15.5305 8.19725 15.15 8.66669 15.15H16.6667C17.1361 15.15 17.5167 15.5305 17.5167 16C17.5167 16.4694 17.1361 16.85 16.6667 16.85H8.66669C8.19725 16.85 7.81669 16.4694 7.81669 16Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M9.48714 5.81665H16.5091C17.3361 5.8165 18.0925 6.28364 18.4625 7.02331L19.8798 9.85886C21.5625 10.1214 22.85 11.577 22.85 13.3333V14.6666C22.85 15.8725 21.8725 16.85 20.6667 16.85H19.3334C18.8639 16.85 18.4834 16.4694 18.4834 16C18.4834 15.5305 18.8639 15.15 19.3334 15.15H20.6667C20.9336 15.15 21.15 14.9336 21.15 14.6666V13.3333C21.15 12.33 20.3367 11.5167 19.3334 11.5167C19.0114 11.5167 18.717 11.3347 18.5731 11.0467L16.942 7.78377C16.8601 7.62012 16.6926 7.5166 16.5096 7.51665H9.48745C9.30473 7.51683 9.13742 7.62005 9.05554 7.78339L7.42724 11.0462C7.28338 11.3345 6.98888 11.5167 6.66669 11.5167H4.66669C3.66337 11.5167 2.85002 12.33 2.85002 13.3333V14.6666C2.85002 14.9336 3.06642 15.15 3.33336 15.15H6.00002C6.46947 15.15 6.85002 15.5305 6.85002 16C6.85002 16.4694 6.46947 16.85 6.00002 16.85H3.33336C2.12754 16.85 1.15002 15.8725 1.15002 14.6666V13.3333C1.15002 11.3911 2.72449 9.81665 4.66669 9.81665H6.14091L7.53458 7.02399C7.90434 6.28471 8.66054 5.81695 9.48714 5.81665Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M5.81669 10.6667C5.81669 10.1972 6.19725 9.81665 6.66669 9.81665H19.3334C19.8028 9.81665 20.1834 10.1972 20.1834 10.6667C20.1834 11.1361 19.8028 11.5167 19.3334 11.5167H6.66669C6.19725 11.5167 5.81669 11.1361 5.81669 10.6667Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
</svg>
|
|
47
|
+
);
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export default SvgParking;
|