huspy-icons 0.3.6 → 0.3.8
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 +151 -73
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +95 -69
- package/dist/fonts/HuspyIcons.ts +148 -70
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +95 -69
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +54 -2
- package/dist/react/index.d.ts +54 -2
- package/dist/react/index.js +2564 -652
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +2779 -867
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +96 -70
- 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/CancelCircleStroke.tsx +38 -0
- package/src/react/CheckCheck.tsx +32 -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 +79 -1
- package/src/react/Image.tsx +38 -0
- package/src/react/ImageOff.tsx +56 -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/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/Time.tsx +32 -0
- package/src/react/index.ts +26 -0
- package/src/react/index.tsx +26 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgGarden = ({ 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="M7.70841 8.39263C7.22426 8.39263 6.75994 8.58495 6.4176 8.9273C6.07525 9.26964 5.88292 9.73396 5.88292 10.2181V10.4007C5.88292 10.7786 5.64999 11.1175 5.29713 11.2528C4.9026 11.4042 4.57281 11.6878 4.36399 12.0551C4.15518 12.4225 4.08029 12.8509 4.15208 13.2674C4.22388 13.6838 4.43792 14.0624 4.7577 14.3386C5.07491 14.6126 5.47667 14.7691 5.89543 14.7818H9.44968C9.87723 14.7851 10.2924 14.6383 10.6227 14.3669C10.9531 14.0954 11.1776 13.7166 11.2573 13.2966C11.337 12.8765 11.2667 12.4418 11.0587 12.0683C10.8506 11.6947 10.5181 11.406 10.119 11.2526C9.76651 11.117 9.5339 10.7783 9.5339 10.4007V10.2181C9.5339 9.73396 9.34157 9.26964 8.99922 8.9273C8.65688 8.58495 8.19256 8.39263 7.70841 8.39263ZM5.12678 7.63648C5.81147 6.95179 6.74011 6.56714 7.70841 6.56714C8.67671 6.56714 9.60535 6.95179 10.29 7.63648C10.881 8.22744 11.2484 9.00013 11.338 9.8232C11.8849 10.1503 12.3399 10.617 12.6535 11.1801C13.0696 11.9272 13.2102 12.7966 13.0508 13.6367C12.8915 14.4769 12.4423 15.2344 11.7816 15.7773C11.1219 16.3194 10.2931 16.613 9.4393 16.6073H5.88292C5.87535 16.6073 5.86779 16.6072 5.86022 16.607C5.01535 16.586 4.20393 16.2725 3.56438 15.7201C2.92482 15.1676 2.49673 14.4104 2.35314 13.5775C2.20955 12.7447 2.35934 11.8878 2.77696 11.1531C3.09045 10.6015 3.5403 10.1444 4.07889 9.82274C4.16851 8.99985 4.53593 8.22733 5.12678 7.63648Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M7.7084 14.7817C8.21249 14.7817 8.62114 15.1904 8.62114 15.6945V21.1709C8.62114 21.675 8.21249 22.0837 7.7084 22.0837C7.2043 22.0837 6.79565 21.675 6.79565 21.1709V15.6945C6.79565 15.1904 7.2043 14.7817 7.7084 14.7817Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M13.1848 17.52C13.6889 17.52 14.0976 17.9287 14.0976 18.4328V21.171C14.0976 21.6751 13.6889 22.0837 13.1848 22.0837C12.6807 22.0837 12.2721 21.6751 12.2721 21.171V18.4328C12.2721 17.9287 12.6807 17.52 13.1848 17.52Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M13.1856 2.91626C13.4389 2.91647 13.6807 3.0219 13.8531 3.20733L17.4959 7.12332C17.7529 7.38737 17.924 7.72311 17.9866 8.08646C18.0502 8.4554 17.9988 8.83496 17.8394 9.1737C17.7518 9.35983 17.6339 9.52868 17.4916 9.67394L19.3271 11.693C19.5696 11.9458 19.7343 12.2632 19.8014 12.6074C19.8697 12.9581 19.8336 13.3212 19.6976 13.6516C19.6078 13.8696 19.4771 14.0671 19.3137 14.2339L21.1526 16.2567C21.3951 16.5095 21.5598 16.8269 21.6268 17.1711C21.6952 17.5218 21.6591 17.8849 21.523 18.2153C21.387 18.5457 21.157 18.8289 20.8615 19.0298C20.566 19.2308 20.218 19.3405 19.8607 19.3456L19.8479 19.3457L12.2721 19.3456C11.768 19.3456 11.3594 18.937 11.3594 18.4329C11.3594 17.9288 11.768 17.5202 12.2721 17.5202H19.835C19.827 17.512 19.8191 17.5037 19.8114 17.4952L17.0732 14.4832C16.8302 14.2158 16.7677 13.8303 16.9138 13.4999C17.06 13.1695 17.3873 12.9564 17.7486 12.9564H18.0095C18.0015 12.9483 17.9936 12.94 17.9859 12.9315L15.2477 9.91944C15.0047 9.65212 14.9422 9.26661 15.0884 8.93621C15.2345 8.60581 15.5618 8.39272 15.9231 8.39272H16.1056C16.133 8.39272 16.1604 8.39395 16.1876 8.39641C16.1808 8.38954 16.1741 8.38256 16.1675 8.37547L13.1837 5.1679L12.5743 5.8209C12.2303 6.18942 11.6527 6.20934 11.2842 5.86538C10.9157 5.52143 10.8958 4.94386 11.2397 4.57534L12.5176 3.20622C12.6904 3.02108 12.9323 2.91605 13.1856 2.91626Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export default SvgGarden;
|
|
@@ -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,20 +19,27 @@ 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
|
|
22
27
|
// Icon: calendar
|
|
23
28
|
// Icon: cancel
|
|
24
29
|
// Icon: cancel-circle-solid
|
|
30
|
+
// Icon: cancel-circle-stroke
|
|
25
31
|
// Icon: check
|
|
32
|
+
// Icon: check-check
|
|
26
33
|
// Icon: check-circle2
|
|
27
34
|
// Icon: chevron-down
|
|
28
35
|
// Icon: chevron-left
|
|
29
36
|
// Icon: chevron-right
|
|
30
37
|
// Icon: chevron-up
|
|
38
|
+
// Icon: closet
|
|
31
39
|
// Icon: collections
|
|
40
|
+
// Icon: door-open
|
|
32
41
|
// Icon: edit
|
|
42
|
+
// Icon: electric
|
|
33
43
|
// Icon: explore-filled
|
|
34
44
|
// Icon: explore-linear
|
|
35
45
|
// Icon: eye-hidden
|
|
@@ -44,24 +54,35 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
44
54
|
// Icon: file-text
|
|
45
55
|
// Icon: filter
|
|
46
56
|
// Icon: fingerprint-android
|
|
57
|
+
// Icon: garden
|
|
58
|
+
// Icon: gas-heating
|
|
59
|
+
// Icon: heating
|
|
47
60
|
// Icon: help-circle
|
|
48
61
|
// Icon: home-filled
|
|
49
62
|
// Icon: home-linear
|
|
50
63
|
// Icon: icon-slot
|
|
64
|
+
// Icon: image
|
|
65
|
+
// Icon: image-off
|
|
51
66
|
// Icon: info
|
|
52
67
|
// Icon: keys01
|
|
53
68
|
// Icon: leads-filled
|
|
54
69
|
// Icon: leads-linear
|
|
70
|
+
// Icon: lift
|
|
55
71
|
// Icon: lock
|
|
56
72
|
// Icon: logout
|
|
73
|
+
// Icon: magic-wand
|
|
57
74
|
// Icon: mail
|
|
58
75
|
// Icon: map-pin
|
|
59
76
|
// Icon: more-horizontal
|
|
60
77
|
// Icon: mortgage
|
|
61
78
|
// Icon: note
|
|
62
79
|
// Icon: notes
|
|
80
|
+
// Icon: outside
|
|
81
|
+
// Icon: parking
|
|
82
|
+
// Icon: patio
|
|
63
83
|
// Icon: payments
|
|
64
84
|
// Icon: pencil-line
|
|
85
|
+
// Icon: pet
|
|
65
86
|
// Icon: phone-linear
|
|
66
87
|
// Icon: pin-map-solid
|
|
67
88
|
// Icon: plus
|
|
@@ -69,11 +90,16 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
69
90
|
// Icon: properties-filled
|
|
70
91
|
// Icon: properties-linear
|
|
71
92
|
// Icon: rent
|
|
93
|
+
// Icon: restaurant
|
|
72
94
|
// Icon: sale
|
|
73
95
|
// Icon: search
|
|
74
96
|
// Icon: search-x
|
|
75
97
|
// Icon: share
|
|
76
98
|
// Icon: size3d
|
|
99
|
+
// Icon: swimming-pool
|
|
100
|
+
// Icon: terrace
|
|
101
|
+
// Icon: thermometer-snowflake
|
|
102
|
+
// Icon: time
|
|
77
103
|
// Icon: trash2
|
|
78
104
|
// Icon: user
|
|
79
105
|
// Icon: whatsapp
|
|
@@ -81,7 +107,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
81
107
|
/**
|
|
82
108
|
* Available icon names
|
|
83
109
|
*/
|
|
84
|
-
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' | 'pin-map-solid' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'trash2' | 'user' | 'whatsapp';
|
|
110
|
+
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' | 'cancel-circle-stroke' | 'check' | 'check-check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'closet' | 'collections' | 'door-open' | 'edit' | 'electric' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-id' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'fingerprint-android' | 'garden' | 'gas-heating' | 'heating' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'image' | 'image-off' | 'info' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lift' | 'lock' | 'logout' | 'magic-wand' | 'mail' | 'map-pin' | 'more-horizontal' | 'mortgage' | 'note' | 'notes' | 'outside' | 'parking' | 'patio' | 'payments' | 'pencil-line' | 'pet' | 'phone-linear' | 'pin-map-solid' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'restaurant' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'swimming-pool' | 'terrace' | 'thermometer-snowflake' | 'time' | 'trash2' | 'user' | 'whatsapp';
|
|
85
111
|
|
|
86
112
|
/**
|
|
87
113
|
* Props for the unified Icon component
|
|
@@ -101,10 +127,16 @@ export interface IconProps extends Omit<ReactIconProps, 'size'> {
|
|
|
101
127
|
*/
|
|
102
128
|
function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
103
129
|
switch (name) {
|
|
130
|
+
case 'accessibility':
|
|
131
|
+
return import('./Accessibility').then(m => m.default);
|
|
104
132
|
case 'add-note':
|
|
105
133
|
return import('./AddNote').then(m => m.default);
|
|
134
|
+
case 'air-conditioner':
|
|
135
|
+
return import('./AirConditioner').then(m => m.default);
|
|
106
136
|
case 'alert-triangle':
|
|
107
137
|
return import('./AlertTriangle').then(m => m.default);
|
|
138
|
+
case 'archive':
|
|
139
|
+
return import('./Archive').then(m => m.default);
|
|
108
140
|
case 'arrow-down':
|
|
109
141
|
return import('./ArrowDown').then(m => m.default);
|
|
110
142
|
case 'arrow-down-left':
|
|
@@ -123,6 +155,10 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
123
155
|
return import('./ArrowUpLeft').then(m => m.default);
|
|
124
156
|
case 'arrow-up-right':
|
|
125
157
|
return import('./ArrowUpRight').then(m => m.default);
|
|
158
|
+
case 'balcony-window':
|
|
159
|
+
return import('./BalconyWindow').then(m => m.default);
|
|
160
|
+
case 'bath':
|
|
161
|
+
return import('./Bath').then(m => m.default);
|
|
126
162
|
case 'bed-double':
|
|
127
163
|
return import('./BedDouble').then(m => m.default);
|
|
128
164
|
case 'bell':
|
|
@@ -135,8 +171,12 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
135
171
|
return import('./Cancel').then(m => m.default);
|
|
136
172
|
case 'cancel-circle-solid':
|
|
137
173
|
return import('./CancelCircleSolid').then(m => m.default);
|
|
174
|
+
case 'cancel-circle-stroke':
|
|
175
|
+
return import('./CancelCircleStroke').then(m => m.default);
|
|
138
176
|
case 'check':
|
|
139
177
|
return import('./Check').then(m => m.default);
|
|
178
|
+
case 'check-check':
|
|
179
|
+
return import('./CheckCheck').then(m => m.default);
|
|
140
180
|
case 'check-circle2':
|
|
141
181
|
return import('./CheckCircle2').then(m => m.default);
|
|
142
182
|
case 'chevron-down':
|
|
@@ -147,10 +187,16 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
147
187
|
return import('./ChevronRight').then(m => m.default);
|
|
148
188
|
case 'chevron-up':
|
|
149
189
|
return import('./ChevronUp').then(m => m.default);
|
|
190
|
+
case 'closet':
|
|
191
|
+
return import('./Closet').then(m => m.default);
|
|
150
192
|
case 'collections':
|
|
151
193
|
return import('./Collections').then(m => m.default);
|
|
194
|
+
case 'door-open':
|
|
195
|
+
return import('./DoorOpen').then(m => m.default);
|
|
152
196
|
case 'edit':
|
|
153
197
|
return import('./Edit').then(m => m.default);
|
|
198
|
+
case 'electric':
|
|
199
|
+
return import('./Electric').then(m => m.default);
|
|
154
200
|
case 'explore-filled':
|
|
155
201
|
return import('./ExploreFilled').then(m => m.default);
|
|
156
202
|
case 'explore-linear':
|
|
@@ -179,6 +225,12 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
179
225
|
return import('./Filter').then(m => m.default);
|
|
180
226
|
case 'fingerprint-android':
|
|
181
227
|
return import('./FingerprintAndroid').then(m => m.default);
|
|
228
|
+
case 'garden':
|
|
229
|
+
return import('./Garden').then(m => m.default);
|
|
230
|
+
case 'gas-heating':
|
|
231
|
+
return import('./GasHeating').then(m => m.default);
|
|
232
|
+
case 'heating':
|
|
233
|
+
return import('./Heating').then(m => m.default);
|
|
182
234
|
case 'help-circle':
|
|
183
235
|
return import('./HelpCircle').then(m => m.default);
|
|
184
236
|
case 'home-filled':
|
|
@@ -187,6 +239,10 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
187
239
|
return import('./HomeLinear').then(m => m.default);
|
|
188
240
|
case 'icon-slot':
|
|
189
241
|
return import('./IconSlot').then(m => m.default);
|
|
242
|
+
case 'image':
|
|
243
|
+
return import('./Image').then(m => m.default);
|
|
244
|
+
case 'image-off':
|
|
245
|
+
return import('./ImageOff').then(m => m.default);
|
|
190
246
|
case 'info':
|
|
191
247
|
return import('./Info').then(m => m.default);
|
|
192
248
|
case 'keys01':
|
|
@@ -195,10 +251,14 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
195
251
|
return import('./LeadsFilled').then(m => m.default);
|
|
196
252
|
case 'leads-linear':
|
|
197
253
|
return import('./LeadsLinear').then(m => m.default);
|
|
254
|
+
case 'lift':
|
|
255
|
+
return import('./Lift').then(m => m.default);
|
|
198
256
|
case 'lock':
|
|
199
257
|
return import('./Lock').then(m => m.default);
|
|
200
258
|
case 'logout':
|
|
201
259
|
return import('./Logout').then(m => m.default);
|
|
260
|
+
case 'magic-wand':
|
|
261
|
+
return import('./MagicWand').then(m => m.default);
|
|
202
262
|
case 'mail':
|
|
203
263
|
return import('./Mail').then(m => m.default);
|
|
204
264
|
case 'map-pin':
|
|
@@ -211,10 +271,18 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
211
271
|
return import('./Note').then(m => m.default);
|
|
212
272
|
case 'notes':
|
|
213
273
|
return import('./Notes').then(m => m.default);
|
|
274
|
+
case 'outside':
|
|
275
|
+
return import('./Outside').then(m => m.default);
|
|
276
|
+
case 'parking':
|
|
277
|
+
return import('./Parking').then(m => m.default);
|
|
278
|
+
case 'patio':
|
|
279
|
+
return import('./Patio').then(m => m.default);
|
|
214
280
|
case 'payments':
|
|
215
281
|
return import('./Payments').then(m => m.default);
|
|
216
282
|
case 'pencil-line':
|
|
217
283
|
return import('./PencilLine').then(m => m.default);
|
|
284
|
+
case 'pet':
|
|
285
|
+
return import('./Pet').then(m => m.default);
|
|
218
286
|
case 'phone-linear':
|
|
219
287
|
return import('./PhoneLinear').then(m => m.default);
|
|
220
288
|
case 'pin-map-solid':
|
|
@@ -229,6 +297,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
229
297
|
return import('./PropertiesLinear').then(m => m.default);
|
|
230
298
|
case 'rent':
|
|
231
299
|
return import('./Rent').then(m => m.default);
|
|
300
|
+
case 'restaurant':
|
|
301
|
+
return import('./Restaurant').then(m => m.default);
|
|
232
302
|
case 'sale':
|
|
233
303
|
return import('./Sale').then(m => m.default);
|
|
234
304
|
case 'search':
|
|
@@ -239,6 +309,14 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
239
309
|
return import('./Share').then(m => m.default);
|
|
240
310
|
case 'size3d':
|
|
241
311
|
return import('./Size3D').then(m => m.default);
|
|
312
|
+
case 'swimming-pool':
|
|
313
|
+
return import('./SwimmingPool').then(m => m.default);
|
|
314
|
+
case 'terrace':
|
|
315
|
+
return import('./Terrace').then(m => m.default);
|
|
316
|
+
case 'thermometer-snowflake':
|
|
317
|
+
return import('./ThermometerSnowflake').then(m => m.default);
|
|
318
|
+
case 'time':
|
|
319
|
+
return import('./Time').then(m => m.default);
|
|
242
320
|
case 'trash2':
|
|
243
321
|
return import('./Trash2').then(m => m.default);
|
|
244
322
|
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,56 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgImageOff = ({ 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="M1.29289 1.29289C1.68342 0.902369 2.31658 0.902369 2.70711 1.29289L22.7071 21.2929C23.0976 21.6834 23.0976 22.3166 22.7071 22.7071C22.3166 23.0976 21.6834 23.0976 21.2929 22.7071L1.29289 2.70711C0.902369 2.31658 0.902369 1.68342 1.29289 1.29289Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M8.28711 6.87289C8.67763 7.26342 8.67763 7.89658 8.28711 8.28711C8.19415 8.38007 8.1204 8.49043 8.07009 8.61189C8.01978 8.73335 7.99389 8.86353 7.99389 8.995C7.99389 9.12647 8.01978 9.25665 8.07009 9.37811C8.1204 9.49957 8.19415 9.60993 8.28711 9.70289C8.38007 9.79586 8.49043 9.8696 8.61189 9.91991C8.73335 9.97022 8.86353 9.99611 8.995 9.99611C9.12647 9.99611 9.25665 9.97022 9.37811 9.91991C9.49957 9.8696 9.60993 9.79586 9.70289 9.70289C10.0934 9.31237 10.7266 9.31237 11.1171 9.70289C11.5076 10.0934 11.5076 10.7266 11.1171 11.1171C10.8384 11.3958 10.5076 11.6168 10.1435 11.7677C9.77936 11.9185 9.38911 11.9961 8.995 11.9961C8.60089 11.9961 8.21064 11.9185 7.84652 11.7677C7.48241 11.6168 7.15157 11.3958 6.87289 11.1171C6.59421 10.8384 6.37315 10.5076 6.22233 10.1435C6.07151 9.77936 5.99389 9.38911 5.99389 8.995C5.99389 8.60089 6.07151 8.21064 6.22233 7.84652C6.37315 7.48241 6.59421 7.15157 6.87289 6.87289C7.26342 6.48237 7.89658 6.48237 8.28711 6.87289Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M14.2071 12.7929C14.5976 13.1834 14.5976 13.8166 14.2071 14.2071L6.70711 21.7071C6.31658 22.0976 5.68342 22.0976 5.29289 21.7071C4.90237 21.3166 4.90237 20.6834 5.29289 20.2929L12.7929 12.7929C13.1834 12.4024 13.8166 12.4024 14.2071 12.7929Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M17.2929 11.2929C17.6834 10.9024 18.3166 10.9024 18.7071 11.2929L21.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.2929 12.7071C16.9024 12.3166 16.9024 11.6834 17.2929 11.2929Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M4.30068 2.88648C4.68922 3.27898 4.68601 3.91214 4.29352 4.30068C4.20077 4.39249 4.1271 4.50172 4.07673 4.62211C4.02647 4.74222 4.00039 4.87106 4 5.00126V19C4 19.2652 4.10536 19.5196 4.29289 19.7071C4.48043 19.8946 4.73478 20 5 20H19C19.2794 20 19.522 19.8897 19.6913 19.7146C20.0754 19.3177 20.7084 19.3073 21.1054 19.6913C21.5023 20.0754 21.5127 20.7084 21.1287 21.1054C20.582 21.6703 19.8206 22 19 22H5C4.20435 22 3.44129 21.6839 2.87868 21.1213C2.31607 20.5587 2 19.7957 2 19V4.99786C2.00084 4.60374 2.0796 4.21367 2.23173 3.85009C2.38387 3.48651 2.60639 3.15659 2.88648 2.87932C3.27898 2.49078 3.91214 2.49399 4.30068 2.88648Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M8 3C8 2.44772 8.44772 2 9 2H19C19.7957 2 20.5587 2.31607 21.1213 2.87868C21.6839 3.44129 22 4.20435 22 5V15C22 15.5523 21.5523 16 21 16C20.4477 16 20 15.5523 20 15V5C20 4.73478 19.8946 4.48043 19.7071 4.29289C19.5196 4.10536 19.2652 4 19 4H9C8.44772 4 8 3.55228 8 3Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
</svg>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export default SvgImageOff;
|
|
@@ -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;
|