huspy-icons 0.3.11 → 0.3.13
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 +140 -107
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +114 -103
- package/dist/fonts/HuspyIcons.ts +136 -103
- 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 +114 -103
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +24 -2
- package/dist/react/index.d.ts +24 -2
- package/dist/react/index.js +1200 -507
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +1119 -426
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +115 -104
- package/src/react/ChaletAdosado.tsx +27 -0
- package/src/react/ChaletIndependet.tsx +24 -0
- package/src/react/ChaletPareado.tsx +27 -0
- package/src/react/Duplex.tsx +56 -0
- package/src/react/Furnished.tsx +31 -0
- package/src/react/Icon.tsx +34 -1
- package/src/react/Loft.tsx +68 -0
- package/src/react/PentHouse.tsx +62 -0
- package/src/react/Storage.tsx +24 -0
- package/src/react/Store.tsx +26 -0
- package/src/react/Tasks.tsx +56 -0
- package/src/react/Warehouse.tsx +44 -0
- package/src/react/index.ts +11 -0
- package/src/react/index.tsx +11 -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 SvgPentHouse = ({ 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="M3.20128 6.39831C3.39022 6.1475 3.686 6 4.00001 6H20C20.314 6 20.6098 6.1475 20.7987 6.39831C20.9877 6.64912 21.0478 6.97411 20.9612 7.27594L19.2001 13.4103C19.194 13.4538 19.1849 13.4971 19.1729 13.54C19.0553 13.9591 18.8043 14.3285 18.4577 14.592C18.1112 14.8555 17.6882 14.9988 17.2529 15L17.25 15H6.73712C6.30524 14.9944 5.88676 14.8491 5.54428 14.586C5.20276 14.3235 4.95511 13.9579 4.83812 13.5434L3.03883 7.27594C2.95219 6.97411 3.01234 6.64912 3.20128 6.39831ZM17.2371 13C17.2377 12.998 17.2383 12.996 17.2388 12.9941L18.6725 8H5.32748L6.76289 13H17.2371Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M8 13C8.55228 13 9 13.4477 9 14V21C9 21.5523 8.55228 22 8 22C7.44772 22 7 21.5523 7 21V14C7 13.4477 7.44772 13 8 13Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M16 13C16.5523 13 17 13.4477 17 14V21C17 21.5523 16.5523 22 16 22C15.4477 22 15 21.5523 15 21V14C15 13.4477 15.4477 13 16 13Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M8.85846 6.00993C9.4052 5.93183 9.91173 6.31173 9.98983 6.85846L10.9898 13.8585C11.0679 14.4052 10.688 14.9117 10.1413 14.9898C9.59457 15.0679 9.08804 14.688 9.00993 14.1413L8.00993 7.1413C7.93183 6.59457 8.31173 6.08804 8.85846 6.00993Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M15.1413 6.00993C15.688 6.08804 16.0679 6.59457 15.9898 7.1413L14.9898 14.1413C14.9117 14.688 14.4052 15.0679 13.8585 14.9898C13.3117 14.9117 12.9318 14.4052 13.0099 13.8585L14.0099 6.85846C14.088 6.31173 14.5946 5.93183 15.1413 6.00993Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M12 2C12.5523 2 13 2.44772 13 3V7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7V3C11 2.44772 11.4477 2 12 2Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
fillRule="evenodd"
|
|
54
|
+
clipRule="evenodd"
|
|
55
|
+
d="M10 3C10 2.44772 10.4477 2 11 2H13C13.5523 2 14 2.44772 14 3C14 3.55228 13.5523 4 13 4H11C10.4477 4 10 3.55228 10 3Z"
|
|
56
|
+
fill="currentColor"
|
|
57
|
+
/>
|
|
58
|
+
</svg>
|
|
59
|
+
);
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export default SvgPentHouse;
|
|
@@ -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 SvgStorage = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 25 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M15.4409 1.4502C16.1602 1.46435 16.8446 1.76362 17.3433 2.28223C17.8384 2.79713 18.11 3.48636 18.1001 4.2002V11.2002H21.4409C22.1602 11.2143 22.8446 11.5136 23.3433 12.0322C23.8384 12.5471 24.11 13.2364 24.1001 13.9502V19.7842C24.1141 20.5035 23.8419 21.1992 23.3433 21.7178C22.8446 22.2364 22.1602 22.5357 21.4409 22.5498H13.9087C13.2093 22.5356 12.5448 22.2504 12.0503 21.7578C11.5555 22.2505 10.8906 22.536 10.1909 22.5498H2.65966C1.94072 22.5353 1.25678 22.236 0.758296 21.7178C0.259869 21.1994 -0.0130903 20.5041 0.000483051 19.7852V13.9502C-0.00914487 13.2364 0.263254 12.5471 0.758296 12.0322C1.25678 11.514 1.94072 11.2147 2.65966 11.2002H5.25048V4.2002C5.24085 3.48643 5.51228 2.79707 6.00732 2.28223C6.50573 1.76389 7.18976 1.46484 7.90869 1.4502H15.4409ZM12.8511 19.7998H12.8501C12.8502 19.8047 12.8491 19.8096 12.8491 19.8145L12.8501 19.8154C12.8445 20.1108 12.9565 20.3959 13.1606 20.6084C13.3653 20.8212 13.6467 20.9442 13.9419 20.9502H21.4097C21.7047 20.9444 21.9854 20.8211 22.1899 20.6084C22.3944 20.3957 22.5062 20.1104 22.5005 19.8154V13.9346C22.5062 13.6396 22.3944 13.3543 22.1899 13.1416C22.0108 12.9553 21.7734 12.8379 21.519 12.8076L21.4097 12.7998H20.3501V18.0498H15.0005V12.7998H12.8511V19.7998ZM2.58154 12.8076C2.32746 12.8381 2.09056 12.9555 1.91162 13.1416C1.70705 13.3544 1.59454 13.6395 1.60009 13.9346L1.60107 13.9424V19.8076L1.60009 19.8154C1.59454 20.1105 1.70705 20.3956 1.91162 20.6084C2.11623 20.8211 2.39678 20.9442 2.69189 20.9502H10.1597C10.4548 20.9444 10.7354 20.8212 10.9399 20.6084C11.1445 20.3956 11.2562 20.1105 11.2505 19.8154L11.2515 19.8145C11.2515 19.8047 11.2503 19.7949 11.2505 19.7852V12.7998H9.10009V18.0498H3.75048V12.7998H2.69189L2.58154 12.8076ZM16.6001 16.4502H18.7505V12.7998H16.6001V16.4502ZM5.35009 16.4502H7.50048V12.7998H5.35009V16.4502ZM7.83154 3.05762C7.57728 3.08805 7.33968 3.2054 7.16064 3.3916C6.9562 3.60433 6.84454 3.88957 6.85009 4.18457V11.2002H16.5005V4.18457C16.5062 3.88956 16.3944 3.60434 16.1899 3.3916C16.0108 3.20535 15.7734 3.08785 15.519 3.05762L15.4097 3.0498H14.3501V8.2998H9.00048V3.0498H7.94189L7.83154 3.05762ZM10.6001 6.7002H12.7505V3.0498H10.6001V6.7002Z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default SvgStorage;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgStore = ({ 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.36294 2.60791C7.93564 2.60791 7.52355 2.76651 7.2065 3.05298L2.68013 7.14281C2.46829 7.35783 2.512 7.69158 2.5121 8.2155V10.2821C2.5121 10.9684 2.7847 11.6265 3.26994 12.1117C3.54541 12.3872 3.87661 12.5941 4.23704 12.7216V18.9069C4.23704 19.5931 4.50965 20.2512 4.99488 20.7364C5.48012 21.2217 6.13824 21.4943 6.82446 21.4943H17.1741C17.8604 21.4943 18.5185 21.2217 19.0037 20.7364C19.4889 20.2512 19.7615 19.5931 19.7615 18.9069V12.7216C20.122 12.5941 20.4532 12.3872 20.7287 12.1117C21.2139 11.6265 21.4865 10.9684 21.4865 10.2821V7.78784C21.4865 7.78462 21.4865 7.7814 21.4865 7.77818V7.69473C21.4865 7.32004 21.2732 7.07091 21.0282 6.86976L16.6759 3.05298C16.3588 2.76651 15.9467 2.60791 15.5194 2.60791H8.36294ZM18.2856 6.83226L16.012 4.77792C15.695 4.49145 15.2829 4.33285 14.8556 4.33285H9.0268C8.5995 4.33285 8.18741 4.49145 7.87036 4.77792L5.59675 6.83226H18.2856ZM4.23704 10.2821V8.5572H19.7615V10.2821C19.7615 10.5109 19.6707 10.7303 19.5089 10.892C19.3525 11.0485 19.1421 11.1386 18.9214 11.1443C18.6133 11.1221 18.3198 11.003 18.083 10.8038C18.0668 10.7902 18.0501 10.7771 18.0329 10.7647C17.783 10.5841 17.4825 10.4869 17.1741 10.4869C16.8658 10.4869 16.5653 10.5841 16.3154 10.7647C16.2982 10.7771 16.2814 10.7902 16.2652 10.8038C16.0342 10.9982 15.7492 11.1163 15.4492 11.1425C15.1492 11.1163 14.8642 10.9982 14.6332 10.8038C14.6169 10.7902 14.6002 10.7771 14.583 10.7647C14.3331 10.5841 14.0326 10.4869 13.7242 10.4869C13.4159 10.4869 13.1154 10.5841 12.8655 10.7647C12.8483 10.7771 12.8316 10.7902 12.8153 10.8038C12.5843 10.9982 12.2993 11.1163 11.9993 11.1425C11.6993 11.1163 11.4143 10.9982 11.1833 10.8038C11.167 10.7902 11.1503 10.7771 11.1331 10.7647C10.8832 10.5841 10.5827 10.4869 10.2743 10.4869C9.966 10.4869 9.6655 10.5841 9.41557 10.7647C9.39839 10.7771 9.38166 10.7902 9.36544 10.8038C9.13444 10.9982 8.84939 11.1163 8.54941 11.1425C8.24943 11.1163 7.96437 10.9982 7.73338 10.8038C7.71715 10.7902 7.70043 10.7771 7.68324 10.7647C7.43332 10.5841 7.13282 10.4869 6.82446 10.4869C6.51611 10.4869 6.21561 10.5841 5.96569 10.7647C5.9485 10.7771 5.93177 10.7902 5.91555 10.8038C5.67882 11.003 5.38532 11.1221 5.07716 11.1443C4.85652 11.1386 4.64612 11.0485 4.48966 10.892C4.32791 10.7303 4.23704 10.5109 4.23704 10.2821ZM5.96199 18.9069V12.7155C6.26887 12.6153 6.55986 12.4688 6.82446 12.28C7.31521 12.63 7.89668 12.8349 8.50201 12.8683C8.53359 12.87 8.56523 12.87 8.59681 12.8683C9.20213 12.8349 9.78361 12.63 10.2744 12.28C10.7651 12.63 11.3466 12.8349 11.9519 12.8683C11.9835 12.87 12.0151 12.87 12.0467 12.8683C12.652 12.8349 13.2335 12.63 13.7242 12.28C14.215 12.63 14.7965 12.8349 15.4018 12.8683C15.4334 12.87 15.465 12.87 15.4966 12.8683C16.1019 12.8349 16.6834 12.63 17.1741 12.28C17.4387 12.4688 17.7297 12.6153 18.0366 12.7155V18.9069C18.0366 19.1356 17.9457 19.355 17.784 19.5167C17.6222 19.6785 17.4029 19.7693 17.1741 19.7693H15.4492V17.1819C15.4492 16.4957 15.1766 15.8376 14.6913 15.3523C14.2061 14.8671 13.548 14.5945 12.8618 14.5945H11.1368C10.4506 14.5945 9.79248 14.8671 9.30725 15.3523C8.82201 15.8376 8.54941 16.4957 8.54941 17.1819V19.7693H6.82446C6.59572 19.7693 6.37635 19.6785 6.2146 19.5167C6.05286 19.355 5.96199 19.1356 5.96199 18.9069ZM10.2743 19.7693V17.1819C10.2743 16.9532 10.3652 16.7338 10.527 16.5721C10.6887 16.4103 10.9081 16.3195 11.1368 16.3195H12.8618C13.0905 16.3195 13.3099 16.4103 13.4716 16.5721C13.6334 16.7338 13.7242 16.9532 13.7242 17.1819V19.7693H10.2743Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export default SvgStore;
|
|
@@ -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 SvgTasks = ({ 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="M9.70711 9.29289C10.0976 9.68342 10.0976 10.3166 9.70711 10.7071L5.70711 14.7071C5.31658 15.0976 4.68342 15.0976 4.29289 14.7071L2.29289 12.7071C1.90237 12.3166 1.90237 11.6834 2.29289 11.2929C2.68342 10.9024 3.31658 10.9024 3.70711 11.2929L5 12.5858L8.29289 9.29289C8.68342 8.90237 9.31658 8.90237 9.70711 9.29289Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M12 5C12 4.44772 12.4477 4 13 4H21C21.5523 4 22 4.44772 22 5C22 5.55228 21.5523 6 21 6H13C12.4477 6 12 5.55228 12 5Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M3.5 5C3.5 4.44772 3.94772 4 4.5 4H5.5C6.05229 4 6.5 4.44772 6.5 5C6.5 5.55228 6.05229 6 5.5 6H4.5C3.94772 6 3.5 5.55228 3.5 5Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M3.5 19C3.5 18.4477 3.94772 18 4.5 18H5.5C6.05229 18 6.5 18.4477 6.5 19C6.5 19.5523 6.05229 20 5.5 20H4.5C3.94772 20 3.5 19.5523 3.5 19Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M12 12C12 11.4477 12.4477 11 13 11H21C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13H13C12.4477 13 12 12.5523 12 12Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M12 19C12 18.4477 12.4477 18 13 18H21C21.5523 18 22 18.4477 22 19C22 19.5523 21.5523 20 21 20H13C12.4477 20 12 19.5523 12 19Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
</svg>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export default SvgTasks;
|
|
@@ -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 SvgWarehouse = ({ 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.63 4.22893L3.62999 7.42893C3.44472 7.50272 3.28574 7.63022 3.17347 7.79504C3.06153 7.95941 3.00114 8.15341 3 8.35226V19.9999C3 20.2651 3.10536 20.5195 3.29289 20.707C3.48043 20.8945 3.73478 20.9999 4 20.9999H20C20.2652 20.9999 20.5196 20.8945 20.7071 20.707C20.8946 20.5195 21 20.2651 21 19.9999V8.35235C20.9989 8.15348 20.9385 7.95944 20.8265 7.79504C20.7143 7.63022 20.5553 7.50272 20.37 7.42893L12.37 4.22893C12.1327 4.13457 11.8673 4.13457 11.63 4.22893ZM10.89 2.37086C11.6028 2.08699 12.3972 2.08699 13.11 2.37086L13.1114 2.37142L21.11 5.57086L21.1111 5.57128C21.6664 5.79271 22.143 6.17503 22.4795 6.6692C22.8163 7.16369 22.9976 7.74758 23 8.34586L23 8.3499L23 19.9999C23 20.7955 22.6839 21.5586 22.1213 22.1212C21.5587 22.6838 20.7957 22.9999 20 22.9999H4C3.20435 22.9999 2.44129 22.6838 1.87868 22.1212C1.31607 21.5586 1 20.7955 1 19.9999V8.34586C1.00241 7.74758 1.18367 7.16369 1.52045 6.6692C1.85709 6.17493 2.33377 5.79255 2.88929 5.57115L10.89 2.37086Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M5 17.9999C5 17.4476 5.44772 16.9999 6 16.9999H18C18.5523 16.9999 19 17.4476 19 17.9999C19 18.5522 18.5523 18.9999 18 18.9999H6C5.44772 18.9999 5 18.5522 5 17.9999Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M5 13.9999C5 13.4476 5.44772 12.9999 6 12.9999H18C18.5523 12.9999 19 13.4476 19 13.9999C19 14.5522 18.5523 14.9999 18 14.9999H6C5.44772 14.9999 5 14.5522 5 13.9999Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M5 9.9999C5 9.44761 5.44772 8.9999 6 8.9999H18C18.5523 8.9999 19 9.44761 19 9.9999V21.9999C19 22.5522 18.5523 22.9999 18 22.9999H6C5.44772 22.9999 5 22.5522 5 21.9999V9.9999ZM7 10.9999V20.9999H17V10.9999H7Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export default SvgWarehouse;
|
package/src/react/index.ts
CHANGED
|
@@ -22,6 +22,9 @@ export { default as Calendar } from './Calendar';
|
|
|
22
22
|
export { default as Cancel } from './Cancel';
|
|
23
23
|
export { default as CancelCircleSolid } from './CancelCircleSolid';
|
|
24
24
|
export { default as CancelCircleStroke } from './CancelCircleStroke';
|
|
25
|
+
export { default as ChaletAdosado } from './ChaletAdosado';
|
|
26
|
+
export { default as ChaletIndependet } from './ChaletIndependet';
|
|
27
|
+
export { default as ChaletPareado } from './ChaletPareado';
|
|
25
28
|
export { default as Check } from './Check';
|
|
26
29
|
export { default as CheckCheck } from './CheckCheck';
|
|
27
30
|
export { default as CheckCircle2 } from './CheckCircle2';
|
|
@@ -33,6 +36,7 @@ export { default as CircleOff } from './CircleOff';
|
|
|
33
36
|
export { default as Closet } from './Closet';
|
|
34
37
|
export { default as Collections } from './Collections';
|
|
35
38
|
export { default as DoorOpen } from './DoorOpen';
|
|
39
|
+
export { default as Duplex } from './Duplex';
|
|
36
40
|
export { default as Edit } from './Edit';
|
|
37
41
|
export { default as Electric } from './Electric';
|
|
38
42
|
export { default as ExploreFilled } from './ExploreFilled';
|
|
@@ -50,6 +54,7 @@ export { default as FileSignature } from './FileSignature';
|
|
|
50
54
|
export { default as FileSpreadsheet } from './FileSpreadsheet';
|
|
51
55
|
export { default as FileText } from './FileText';
|
|
52
56
|
export { default as Filter } from './Filter';
|
|
57
|
+
export { default as Furnished } from './Furnished';
|
|
53
58
|
export { default as Garden } from './Garden';
|
|
54
59
|
export { default as GasHeating } from './GasHeating';
|
|
55
60
|
export { default as Heating } from './Heating';
|
|
@@ -66,6 +71,7 @@ export { default as LeadsFilled } from './LeadsFilled';
|
|
|
66
71
|
export { default as LeadsLinear } from './LeadsLinear';
|
|
67
72
|
export { default as Lift } from './Lift';
|
|
68
73
|
export { default as Lock } from './Lock';
|
|
74
|
+
export { default as Loft } from './Loft';
|
|
69
75
|
export { default as Logout } from './Logout';
|
|
70
76
|
export { default as MagicWand } from './MagicWand';
|
|
71
77
|
export { default as Mail } from './Mail';
|
|
@@ -79,6 +85,7 @@ export { default as Parking } from './Parking';
|
|
|
79
85
|
export { default as Patio } from './Patio';
|
|
80
86
|
export { default as Payments } from './Payments';
|
|
81
87
|
export { default as PencilLine } from './PencilLine';
|
|
88
|
+
export { default as PentHouse } from './PentHouse';
|
|
82
89
|
export { default as Pet } from './Pet';
|
|
83
90
|
export { default as PhoneLinear } from './PhoneLinear';
|
|
84
91
|
export { default as PinMapSolid } from './PinMapSolid';
|
|
@@ -94,7 +101,10 @@ export { default as SearchX } from './SearchX';
|
|
|
94
101
|
export { default as Share } from './Share';
|
|
95
102
|
export { default as Size3D } from './Size3D';
|
|
96
103
|
export { default as StatusDot } from './StatusDot';
|
|
104
|
+
export { default as Storage } from './Storage';
|
|
105
|
+
export { default as Store } from './Store';
|
|
97
106
|
export { default as SwimmingPool } from './SwimmingPool';
|
|
107
|
+
export { default as Tasks } from './Tasks';
|
|
98
108
|
export { default as Terrace } from './Terrace';
|
|
99
109
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
100
110
|
export { default as Time } from './Time';
|
|
@@ -102,6 +112,7 @@ export { default as TouchAndroid } from './TouchAndroid';
|
|
|
102
112
|
export { default as TouchIos } from './TouchIos';
|
|
103
113
|
export { default as Trash2 } from './Trash2';
|
|
104
114
|
export { default as User } from './User';
|
|
115
|
+
export { default as Warehouse } from './Warehouse';
|
|
105
116
|
export { default as Whatsapp } from './Whatsapp';
|
|
106
117
|
|
|
107
118
|
// Unified Icon component
|
package/src/react/index.tsx
CHANGED
|
@@ -21,6 +21,9 @@ export { default as Calendar } from './Calendar';
|
|
|
21
21
|
export { default as CancelCircleSolid } from './CancelCircleSolid';
|
|
22
22
|
export { default as CancelCircleStroke } from './CancelCircleStroke';
|
|
23
23
|
export { default as Cancel } from './Cancel';
|
|
24
|
+
export { default as ChaletAdosado } from './ChaletAdosado';
|
|
25
|
+
export { default as ChaletIndependet } from './ChaletIndependet';
|
|
26
|
+
export { default as ChaletPareado } from './ChaletPareado';
|
|
24
27
|
export { default as CheckCheck } from './CheckCheck';
|
|
25
28
|
export { default as CheckCircle2 } from './CheckCircle2';
|
|
26
29
|
export { default as Check } from './Check';
|
|
@@ -32,6 +35,7 @@ export { default as CircleOff } from './CircleOff';
|
|
|
32
35
|
export { default as Closet } from './Closet';
|
|
33
36
|
export { default as Collections } from './Collections';
|
|
34
37
|
export { default as DoorOpen } from './DoorOpen';
|
|
38
|
+
export { default as Duplex } from './Duplex';
|
|
35
39
|
export { default as Edit } from './Edit';
|
|
36
40
|
export { default as Electric } from './Electric';
|
|
37
41
|
export { default as ExploreFilled } from './ExploreFilled';
|
|
@@ -49,6 +53,7 @@ export { default as FileSignature } from './FileSignature';
|
|
|
49
53
|
export { default as FileSpreadsheet } from './FileSpreadsheet';
|
|
50
54
|
export { default as FileText } from './FileText';
|
|
51
55
|
export { default as Filter } from './Filter';
|
|
56
|
+
export { default as Furnished } from './Furnished';
|
|
52
57
|
export { default as Garden } from './Garden';
|
|
53
58
|
export { default as GasHeating } from './GasHeating';
|
|
54
59
|
export { default as Heating } from './Heating';
|
|
@@ -65,6 +70,7 @@ export { default as LeadsFilled } from './LeadsFilled';
|
|
|
65
70
|
export { default as LeadsLinear } from './LeadsLinear';
|
|
66
71
|
export { default as Lift } from './Lift';
|
|
67
72
|
export { default as Lock } from './Lock';
|
|
73
|
+
export { default as Loft } from './Loft';
|
|
68
74
|
export { default as Logout } from './Logout';
|
|
69
75
|
export { default as MagicWand } from './MagicWand';
|
|
70
76
|
export { default as Mail } from './Mail';
|
|
@@ -78,6 +84,7 @@ export { default as Parking } from './Parking';
|
|
|
78
84
|
export { default as Patio } from './Patio';
|
|
79
85
|
export { default as Payments } from './Payments';
|
|
80
86
|
export { default as PencilLine } from './PencilLine';
|
|
87
|
+
export { default as PentHouse } from './PentHouse';
|
|
81
88
|
export { default as Pet } from './Pet';
|
|
82
89
|
export { default as PhoneLinear } from './PhoneLinear';
|
|
83
90
|
export { default as PinMapSolid } from './PinMapSolid';
|
|
@@ -93,7 +100,10 @@ export { default as Search } from './Search';
|
|
|
93
100
|
export { default as Share } from './Share';
|
|
94
101
|
export { default as Size3D } from './Size3D';
|
|
95
102
|
export { default as StatusDot } from './StatusDot';
|
|
103
|
+
export { default as Storage } from './Storage';
|
|
104
|
+
export { default as Store } from './Store';
|
|
96
105
|
export { default as SwimmingPool } from './SwimmingPool';
|
|
106
|
+
export { default as Tasks } from './Tasks';
|
|
97
107
|
export { default as Terrace } from './Terrace';
|
|
98
108
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
99
109
|
export { default as Time } from './Time';
|
|
@@ -101,4 +111,5 @@ export { default as TouchAndroid } from './TouchAndroid';
|
|
|
101
111
|
export { default as TouchIos } from './TouchIos';
|
|
102
112
|
export { default as Trash2 } from './Trash2';
|
|
103
113
|
export { default as User } from './User';
|
|
114
|
+
export { default as Warehouse } from './Warehouse';
|
|
104
115
|
export { default as Whatsapp } from './Whatsapp';
|