huspy-icons 0.1.9 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/fonts/HuspyIcons.css +94 -19
  2. package/dist/fonts/HuspyIcons.eot +0 -0
  3. package/dist/fonts/HuspyIcons.json +40 -15
  4. package/dist/fonts/HuspyIcons.ts +91 -16
  5. package/dist/fonts/HuspyIcons.ttf +0 -0
  6. package/dist/fonts/HuspyIcons.woff +0 -0
  7. package/dist/fonts/HuspyIcons.woff2 +0 -0
  8. package/dist/native/index.d.ts +1 -1
  9. package/dist/native/index.js +40 -15
  10. package/dist/native/index.js.map +1 -1
  11. package/dist/react/index.d.mts +52 -2
  12. package/dist/react/index.d.ts +52 -2
  13. package/dist/react/index.js +1547 -221
  14. package/dist/react/index.js.map +1 -1
  15. package/dist/react/index.mjs +1537 -211
  16. package/dist/react/index.mjs.map +1 -1
  17. package/package.json +1 -1
  18. package/src/native/glyphMap.ts +41 -16
  19. package/src/react/AlertTriangle.tsx +38 -0
  20. package/src/react/ArrowDown.tsx +32 -0
  21. package/src/react/ArrowDownLeft.tsx +32 -0
  22. package/src/react/ArrowDownRight.tsx +32 -0
  23. package/src/react/ArrowRight.tsx +32 -0
  24. package/src/react/ArrowUp.tsx +32 -0
  25. package/src/react/ArrowUpLeft.tsx +32 -0
  26. package/src/react/ArrowUpRight.tsx +32 -0
  27. package/src/react/Bell.tsx +32 -0
  28. package/src/react/CancelCircleSolid.tsx +26 -0
  29. package/src/react/ChevronDown.tsx +24 -0
  30. package/src/react/ChevronLeft.tsx +24 -0
  31. package/src/react/ChevronRight.tsx +24 -0
  32. package/src/react/ChevronUp.tsx +24 -0
  33. package/src/react/ExploreFilled.tsx +36 -0
  34. package/src/react/ExploreLinear.tsx +32 -0
  35. package/src/react/FileKey.tsx +44 -0
  36. package/src/react/Icon.tsx +76 -1
  37. package/src/react/Keys01.tsx +38 -0
  38. package/src/react/Mail.tsx +32 -0
  39. package/src/react/Mortgage.tsx +62 -0
  40. package/src/react/Payments.tsx +24 -0
  41. package/src/react/Rent.tsx +38 -0
  42. package/src/react/SearchX.tsx +44 -0
  43. package/src/react/Share.tsx +38 -0
  44. package/src/react/Whatsapp.tsx +26 -0
  45. package/src/react/index.ts +25 -0
  46. package/src/react/index.tsx +25 -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 SvgMortgage = ({ 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="M2 22C2 21.4477 2.44772 21 3 21H10.0474C10.5997 21 11.0474 21.4477 11.0474 22C11.0474 22.5523 10.5997 23 10.0474 23H3C2.44772 23 2 22.5523 2 22Z"
20
+ fill="currentColor"
21
+ />
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M6 10C6.55228 10 7 10.4477 7 11V18C7 18.5523 6.55228 19 6 19C5.44772 19 5 18.5523 5 18V11C5 10.4477 5.44772 10 6 10Z"
26
+ fill="currentColor"
27
+ />
28
+ <path
29
+ fillRule="evenodd"
30
+ clipRule="evenodd"
31
+ d="M10 10C10.5523 10 11 10.4477 11 11V18C11 18.5523 10.5523 19 10 19C9.44772 19 9 18.5523 9 18V11C9 10.4477 9.44772 10 10 10Z"
32
+ fill="currentColor"
33
+ />
34
+ <path
35
+ fillRule="evenodd"
36
+ clipRule="evenodd"
37
+ d="M14 10C14.5523 10 15 10.4477 15 11V14.0836C15 14.6359 14.5523 15.0836 14 15.0836C13.4477 15.0836 13 14.6359 13 14.0836V11C13 10.4477 13.4477 10 14 10Z"
38
+ fill="currentColor"
39
+ />
40
+ <path
41
+ fillRule="evenodd"
42
+ clipRule="evenodd"
43
+ d="M18 10C18.5523 10 19 10.4477 19 11V12.6897C19 13.242 18.5523 13.6897 18 13.6897C17.4477 13.6897 17 13.242 17 12.6897V11C17 10.4477 17.4477 10 18 10Z"
44
+ fill="currentColor"
45
+ />
46
+ <path
47
+ fillRule="evenodd"
48
+ clipRule="evenodd"
49
+ d="M11.47 1.152C11.7943 0.949333 12.2057 0.949333 12.53 1.152L20.53 6.152C20.9083 6.38844 21.0842 6.84686 20.9612 7.27568C20.8383 7.70451 20.4461 8 20 8H4C3.55389 8 3.16174 7.70451 3.03875 7.27568C2.91577 6.84686 3.0917 6.38844 3.47 6.152L11.47 1.152ZM7.4868 6H16.5132L12 3.17925L7.4868 6Z"
50
+ fill="currentColor"
51
+ />
52
+ <path
53
+ fillRule="evenodd"
54
+ clipRule="evenodd"
55
+ d="M12.6391 19.0273C13.0488 18.6336 13.7002 18.6466 14.0938 19.0563L15.4214 20.438L20.1509 15.2487C20.5336 14.8287 21.1844 14.7985 21.6044 15.1813C22.0243 15.564 22.0545 16.2148 21.6717 16.6348L16.2016 22.6367C16.0098 22.8471 15.7394 22.9687 15.4547 22.9724C15.1701 22.9762 14.8965 22.8618 14.6993 22.6565L12.61 20.482C12.2163 20.0723 12.2293 19.421 12.6391 19.0273Z"
56
+ fill="currentColor"
57
+ />
58
+ </svg>
59
+ );
60
+ };
61
+
62
+ export default SvgMortgage;
@@ -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 SvgPayments = ({ 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="M14 13C13.1667 13 12.4583 12.7083 11.875 12.125C11.2917 11.5417 11 10.8333 11 10C11 9.16667 11.2917 8.45833 11.875 7.875C12.4583 7.29167 13.1667 7 14 7C14.8333 7 15.5417 7.29167 16.125 7.875C16.7083 8.45833 17 9.16667 17 10C17 10.8333 16.7083 11.5417 16.125 12.125C15.5417 12.7083 14.8333 13 14 13ZM7 16C6.45 16 5.97917 15.8042 5.5875 15.4125C5.19583 15.0208 5 14.55 5 14V6C5 5.45 5.19583 4.97917 5.5875 4.5875C5.97917 4.19583 6.45 4 7 4H21C21.55 4 22.0208 4.19583 22.4125 4.5875C22.8042 4.97917 23 5.45 23 6V14C23 14.55 22.8042 15.0208 22.4125 15.4125C22.0208 15.8042 21.55 16 21 16H7ZM9 14H19C19 13.45 19.1958 12.9792 19.5875 12.5875C19.9792 12.1958 20.45 12 21 12V8C20.45 8 19.9792 7.80417 19.5875 7.4125C19.1958 7.02083 19 6.55 19 6H9C9 6.55 8.80417 7.02083 8.4125 7.4125C8.02083 7.80417 7.55 8 7 8V12C7.55 12 8.02083 12.1958 8.4125 12.5875C8.80417 12.9792 9 13.45 9 14ZM20 20H3C2.45 20 1.97917 19.8042 1.5875 19.4125C1.19583 19.0208 1 18.55 1 18V7H3V18H20V20Z"
18
+ fill="currentColor"
19
+ />
20
+ </svg>
21
+ );
22
+ };
23
+
24
+ export default SvgPayments;
@@ -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 SvgRent = ({ 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="M2.87868 5.87868C3.44129 5.31607 4.20435 5 5 5H18C18.2422 5 18.4762 5.08792 18.6585 5.24742L22.6585 8.74742C22.8755 8.93731 23 9.21164 23 9.5C23 9.78836 22.8755 10.0627 22.6585 10.2526L18.6585 13.7526C18.4762 13.9121 18.2422 14 18 14H5C4.20435 14 3.44129 13.6839 2.87868 13.1213C2.31607 12.5587 2 11.7956 2 11V8C2 7.20435 2.31607 6.44129 2.87868 5.87868ZM5 7C4.73478 7 4.48043 7.10536 4.29289 7.29289C4.10536 7.48043 4 7.73478 4 8V11C4 11.2652 4.10536 11.5196 4.29289 11.7071C4.48043 11.8946 4.73478 12 5 12H17.6243L20.4814 9.5L17.6243 7H5Z"
20
+ fill="currentColor"
21
+ />
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M12 12C12.5523 12 13 12.4477 13 13V21C13 21.5523 12.5523 22 12 22C11.4477 22 11 21.5523 11 21V13C11 12.4477 11.4477 12 12 12Z"
26
+ fill="currentColor"
27
+ />
28
+ <path
29
+ fillRule="evenodd"
30
+ clipRule="evenodd"
31
+ d="M12 2C12.5523 2 13 2.44772 13 3V6C13 6.55228 12.5523 7 12 7C11.4477 7 11 6.55228 11 6V3C11 2.44772 11.4477 2 12 2Z"
32
+ fill="currentColor"
33
+ />
34
+ </svg>
35
+ );
36
+ };
37
+
38
+ export default SvgRent;
@@ -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 SvgSearchX = ({ 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="M14.2071 7.79289C14.5976 8.18342 14.5976 8.81658 14.2071 9.20711L9.20711 14.2071C8.81658 14.5976 8.18342 14.5976 7.79289 14.2071C7.40237 13.8166 7.40237 13.1834 7.79289 12.7929L12.7929 7.79289C13.1834 7.40237 13.8166 7.40237 14.2071 7.79289Z"
20
+ fill="currentColor"
21
+ />
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M7.79289 7.79289C8.18342 7.40237 8.81658 7.40237 9.20711 7.79289L14.2071 12.7929C14.5976 13.1834 14.5976 13.8166 14.2071 14.2071C13.8166 14.5976 13.1834 14.5976 12.7929 14.2071L7.79289 9.20711C7.40237 8.81658 7.40237 8.18342 7.79289 7.79289Z"
26
+ fill="currentColor"
27
+ />
28
+ <path
29
+ fillRule="evenodd"
30
+ clipRule="evenodd"
31
+ d="M11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C14.866 18 18 14.866 18 11C18 7.13401 14.866 4 11 4ZM2 11C2 6.02944 6.02944 2 11 2C15.9706 2 20 6.02944 20 11C20 15.9706 15.9706 20 11 20C6.02944 20 2 15.9706 2 11Z"
32
+ fill="currentColor"
33
+ />
34
+ <path
35
+ fillRule="evenodd"
36
+ clipRule="evenodd"
37
+ d="M15.9929 15.9929C16.3834 15.6024 17.0166 15.6024 17.4071 15.9929L21.7071 20.2929C22.0976 20.6834 22.0976 21.3166 21.7071 21.7071C21.3166 22.0976 20.6834 22.0976 20.2929 21.7071L15.9929 17.4071C15.6024 17.0166 15.6024 16.3834 15.9929 15.9929Z"
38
+ fill="currentColor"
39
+ />
40
+ </svg>
41
+ );
42
+ };
43
+
44
+ export default SvgSearchX;
@@ -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 SvgShare = ({ 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 14.0001C3.55228 14.0001 4 14.4478 4 15.0001V19C4 19.2653 4.10536 19.5196 4.29289 19.7072C4.48043 19.8947 4.73478 20 5 20H19C19.2652 20 19.5196 19.8947 19.7071 19.7072C19.8946 19.5196 20 19.2653 20 19V15.0001C20 14.4478 20.4477 14.0001 21 14.0001C21.5523 14.0001 22 14.4478 22 15.0001V19C22 19.7957 21.6839 20.5588 21.1213 21.1214C20.5587 21.684 19.7957 22 19 22H5C4.20435 22 3.44129 21.684 2.87868 21.1214C2.31607 20.5588 2 19.7957 2 19V15.0001C2 14.4478 2.44772 14.0001 3 14.0001Z"
20
+ fill="currentColor"
21
+ />
22
+ <path
23
+ fillRule="evenodd"
24
+ clipRule="evenodd"
25
+ d="M17.8015 8.7026C17.411 9.09313 16.7778 9.09313 16.3873 8.7026L12.0944 4.40971L7.8015 8.7026C7.41098 9.09313 6.77781 9.09313 6.38729 8.7026C5.99676 8.31208 5.99676 7.67892 6.38729 7.28839L11.3873 2.28839C11.7778 1.89787 12.411 1.89787 12.8015 2.28839L17.8015 7.28839C18.192 7.67892 18.192 8.31208 17.8015 8.7026Z"
26
+ fill="currentColor"
27
+ />
28
+ <path
29
+ fillRule="evenodd"
30
+ clipRule="evenodd"
31
+ d="M12.0187 15.9927C11.4664 15.9927 11.0187 15.545 11.0187 14.9927V2.99267C11.0187 2.44039 11.4664 1.99267 12.0187 1.99267C12.571 1.99267 13.0187 2.44039 13.0187 2.99267V14.9927C13.0187 15.545 12.571 15.9927 12.0187 15.9927Z"
32
+ fill="currentColor"
33
+ />
34
+ </svg>
35
+ );
36
+ };
37
+
38
+ export default SvgShare;
@@ -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 SvgWhatsapp = ({ 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="M19.0861 4.90629C18.1616 3.98132 17.0633 3.24835 15.8543 2.74958C14.6454 2.2508 13.3497 1.99607 12.0419 2.00005C6.55356 2.00005 2.08571 6.44557 2.08348 11.9107C2.08105 13.651 2.53977 15.3608 3.41294 16.8661L2 22L7.27901 20.6219C8.74026 21.4135 10.376 21.8278 12.0379 21.8272H12.0419C17.5299 21.8272 21.9973 17.3813 22 11.9165C22.0033 10.6132 21.7474 9.32226 21.2472 8.11876C20.7469 6.91526 20.0123 5.82326 19.0861 4.90629ZM12.0419 20.1545H12.0384C10.5569 20.1549 9.10227 19.7584 7.82588 19.0063L7.52365 18.8277L4.39107 19.6456L5.22723 16.6058L5.03035 16.2933C4.20195 14.9818 3.76305 13.462 3.76473 11.9107C3.76473 7.36923 7.47946 3.67415 12.0451 3.67415C14.2352 3.67024 16.3373 4.53644 17.8889 6.08224C19.4404 7.62803 20.3145 9.72682 20.3187 11.917C20.3169 16.459 16.604 20.1545 12.0419 20.1545ZM16.5817 13.9853C16.333 13.8612 15.1085 13.2621 14.8817 13.1795C14.6549 13.0969 14.4875 13.0554 14.3219 13.3036C14.1562 13.5518 13.679 14.1072 13.5339 14.2746C13.3888 14.442 13.2437 14.4603 12.9951 14.3362C12.7464 14.2121 11.9442 13.9509 10.9937 13.1072C10.254 12.4505 9.7549 11.6398 9.60981 11.392C9.46472 11.1442 9.59418 11.0099 9.71874 10.8866C9.83079 10.7755 9.9674 10.5974 10.092 10.4527C10.2165 10.3081 10.258 10.2045 10.3406 10.0393C10.4232 9.87414 10.3821 9.7295 10.3201 9.60584C10.258 9.48218 9.76026 8.26298 9.55311 7.767C9.35088 7.28397 9.14597 7.34959 8.99329 7.342C8.8482 7.33486 8.68079 7.33307 8.51606 7.33307C8.39013 7.33635 8.26622 7.36556 8.15208 7.41886C8.03794 7.47217 7.93602 7.54843 7.85267 7.64289C7.62455 7.89111 6.98169 8.49111 6.98169 9.70896C6.98169 10.9268 7.87454 12.1054 7.99776 12.2706C8.12097 12.4357 9.75222 14.9371 12.2482 16.0098C12.7117 16.2083 13.1852 16.3824 13.6669 16.5313C14.2629 16.7197 14.8053 16.6933 15.2339 16.6295C15.712 16.5585 16.7071 16.0304 16.9138 15.4518C17.1205 14.8732 17.121 14.3777 17.0589 14.2746C16.9969 14.1715 16.8308 14.109 16.5817 13.9853Z"
20
+ fill="currentColor"
21
+ />
22
+ </svg>
23
+ );
24
+ };
25
+
26
+ export default SvgWhatsapp;
@@ -1,19 +1,44 @@
1
1
  // Auto-generated exports
2
+ export { default as AlertTriangle } from './AlertTriangle';
3
+ export { default as ArrowDown } from './ArrowDown';
4
+ export { default as ArrowDownLeft } from './ArrowDownLeft';
5
+ export { default as ArrowDownRight } from './ArrowDownRight';
2
6
  export { default as ArrowLeft } from './ArrowLeft';
7
+ export { default as ArrowRight } from './ArrowRight';
8
+ export { default as ArrowUp } from './ArrowUp';
9
+ export { default as ArrowUpLeft } from './ArrowUpLeft';
10
+ export { default as ArrowUpRight } from './ArrowUpRight';
11
+ export { default as Bell } from './Bell';
3
12
  export { default as Cancel } from './Cancel';
13
+ export { default as CancelCircleSolid } from './CancelCircleSolid';
4
14
  export { default as Check } from './Check';
15
+ export { default as ChevronDown } from './ChevronDown';
16
+ export { default as ChevronLeft } from './ChevronLeft';
17
+ export { default as ChevronRight } from './ChevronRight';
18
+ export { default as ChevronUp } from './ChevronUp';
5
19
  export { default as Edit } from './Edit';
20
+ export { default as ExploreFilled } from './ExploreFilled';
21
+ export { default as ExploreLinear } from './ExploreLinear';
6
22
  export { default as EyeHidden } from './EyeHidden';
7
23
  export { default as EyeVisible } from './EyeVisible';
24
+ export { default as FileKey } from './FileKey';
8
25
  export { default as HomeFilled } from './HomeFilled';
9
26
  export { default as HomeLinear } from './HomeLinear';
10
27
  export { default as IconSlot } from './IconSlot';
28
+ export { default as Keys01 } from './Keys01';
11
29
  export { default as LeadsFilled } from './LeadsFilled';
12
30
  export { default as LeadsLinear } from './LeadsLinear';
31
+ export { default as Mail } from './Mail';
32
+ export { default as Mortgage } from './Mortgage';
33
+ export { default as Payments } from './Payments';
13
34
  export { default as PropertiesFilled } from './PropertiesFilled';
14
35
  export { default as PropertiesLinear } from './PropertiesLinear';
36
+ export { default as Rent } from './Rent';
15
37
  export { default as Search } from './Search';
38
+ export { default as SearchX } from './SearchX';
39
+ export { default as Share } from './Share';
16
40
  export { default as User } from './User';
41
+ export { default as Whatsapp } from './Whatsapp';
17
42
 
18
43
  // Unified Icon component
19
44
  export { default as Icon } from './Icon';
@@ -1,15 +1,40 @@
1
+ export { default as AlertTriangle } from './AlertTriangle';
2
+ export { default as ArrowDownLeft } from './ArrowDownLeft';
3
+ export { default as ArrowDownRight } from './ArrowDownRight';
4
+ export { default as ArrowDown } from './ArrowDown';
1
5
  export { default as ArrowLeft } from './ArrowLeft';
6
+ export { default as ArrowRight } from './ArrowRight';
7
+ export { default as ArrowUpLeft } from './ArrowUpLeft';
8
+ export { default as ArrowUpRight } from './ArrowUpRight';
9
+ export { default as ArrowUp } from './ArrowUp';
10
+ export { default as Bell } from './Bell';
11
+ export { default as CancelCircleSolid } from './CancelCircleSolid';
2
12
  export { default as Cancel } from './Cancel';
3
13
  export { default as Check } from './Check';
14
+ export { default as ChevronDown } from './ChevronDown';
15
+ export { default as ChevronLeft } from './ChevronLeft';
16
+ export { default as ChevronRight } from './ChevronRight';
17
+ export { default as ChevronUp } from './ChevronUp';
4
18
  export { default as Edit } from './Edit';
19
+ export { default as ExploreFilled } from './ExploreFilled';
20
+ export { default as ExploreLinear } from './ExploreLinear';
5
21
  export { default as EyeHidden } from './EyeHidden';
6
22
  export { default as EyeVisible } from './EyeVisible';
23
+ export { default as FileKey } from './FileKey';
7
24
  export { default as HomeFilled } from './HomeFilled';
8
25
  export { default as HomeLinear } from './HomeLinear';
9
26
  export { default as IconSlot } from './IconSlot';
27
+ export { default as Keys01 } from './Keys01';
10
28
  export { default as LeadsFilled } from './LeadsFilled';
11
29
  export { default as LeadsLinear } from './LeadsLinear';
30
+ export { default as Mail } from './Mail';
31
+ export { default as Mortgage } from './Mortgage';
32
+ export { default as Payments } from './Payments';
12
33
  export { default as PropertiesFilled } from './PropertiesFilled';
13
34
  export { default as PropertiesLinear } from './PropertiesLinear';
35
+ export { default as Rent } from './Rent';
36
+ export { default as SearchX } from './SearchX';
14
37
  export { default as Search } from './Search';
38
+ export { default as Share } from './Share';
15
39
  export { default as User } from './User';
40
+ export { default as Whatsapp } from './Whatsapp';