huspy-icons 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -8
- package/dist/fonts/HuspyIcons.css +100 -13
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +38 -9
- package/dist/fonts/HuspyIcons.ts +97 -10
- 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 +38 -9
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +60 -2
- package/dist/react/index.d.ts +60 -2
- package/dist/react/index.js +1704 -113
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +1715 -124
- package/dist/react/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/native/glyphMap.ts +39 -10
- package/src/react/AlertTriangle.tsx +38 -0
- package/src/react/ArrowDown.tsx +32 -0
- package/src/react/ArrowDownLeft.tsx +32 -0
- package/src/react/ArrowDownRight.tsx +32 -0
- package/src/react/ArrowRight.tsx +32 -0
- package/src/react/ArrowUp.tsx +32 -0
- package/src/react/ArrowUpLeft.tsx +32 -0
- package/src/react/ArrowUpRight.tsx +32 -0
- package/src/react/Bell.tsx +32 -0
- package/src/react/CancelCircleSolid.tsx +26 -0
- package/src/react/ChevronDown.tsx +24 -0
- package/src/react/ChevronLeft.tsx +24 -0
- package/src/react/ChevronRight.tsx +24 -0
- package/src/react/ChevronUp.tsx +24 -0
- package/src/react/FileKey.tsx +44 -0
- package/src/react/HomeFilled.tsx +24 -0
- package/src/react/HomeLinear.tsx +26 -0
- package/src/react/Icon.tsx +88 -1
- package/src/react/Keys01.tsx +38 -0
- package/src/react/LeadsFilled.tsx +44 -0
- package/src/react/LeadsLinear.tsx +44 -0
- package/src/react/Mail.tsx +32 -0
- package/src/react/Mortgage.tsx +62 -0
- package/src/react/Payments.tsx +24 -0
- package/src/react/PropertiesFilled.tsx +36 -0
- package/src/react/PropertiesLinear.tsx +62 -0
- package/src/react/Rent.tsx +38 -0
- package/src/react/SearchX.tsx +44 -0
- package/src/react/Share.tsx +38 -0
- package/src/react/Whatsapp.tsx +26 -0
- package/src/react/index.ts +29 -0
- package/src/react/index.tsx +29 -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,36 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgPropertiesFilled = ({ 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.87831 11.8787C2.44092 11.3161 3.20398 11 3.99963 11H5.99963C6.55192 11 6.99963 11.4477 6.99963 12C6.99963 12.5523 6.55192 13 5.99963 13H3.99963C3.73442 13 3.48006 13.1054 3.29253 13.2929C3.10499 13.4804 2.99963 13.7348 2.99963 14V20C2.99963 20.2652 3.10499 20.5196 3.29253 20.7071C3.48006 20.8946 3.73442 21 3.99963 21H7.99963C8.55192 21 8.99963 21.4477 8.99963 22C8.99963 22.5523 8.55192 23 7.99963 23H3.99963C3.20398 23 2.44092 22.6839 1.87831 22.1213C1.3157 21.5587 0.999634 20.7956 0.999634 20V14C0.999634 13.2044 1.3157 12.4413 1.87831 11.8787Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M16.9996 9C16.9996 8.44772 17.4473 8 17.9996 8H19.9996C20.7953 8 21.5583 8.31607 22.121 8.87868C22.6836 9.44129 22.9996 10.2043 22.9996 11V20C22.9996 20.7957 22.6836 21.5587 22.121 22.1213C21.5583 22.6839 20.7953 23 19.9996 23H15.9996C15.4473 23 14.9996 22.5523 14.9996 22C14.9996 21.4477 15.4473 21 15.9996 21H19.9996C20.2649 21 20.5192 20.8946 20.7067 20.7071C20.8943 20.5196 20.9996 20.2652 20.9996 20V11C20.9996 10.7348 20.8943 10.4804 20.7067 10.2929C20.5192 10.1054 20.2649 10 19.9996 10H17.9996C17.4473 10 16.9996 9.55228 16.9996 9Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M16.0356 0.902344C17.6923 0.902608 19.0356 2.24565 19.0356 3.90234V19.999C19.0356 21.6559 17.6915 22.999 16.0347 22.999H8.00049C6.34363 22.999 5.00049 21.6559 5.00049 19.999V3.90234C5.00049 2.24549 6.34363 0.902344 8.00049 0.902344H16.0356ZM10.0005 17C9.4482 17 9.00049 17.4477 9.00049 18C9.00051 18.5523 9.44822 19 10.0005 19H14.0005C14.5525 18.9997 15.0005 18.5521 15.0005 18C15.0005 17.4479 14.5525 17.0003 14.0005 17H10.0005ZM10.0005 13C9.4482 13 9.00049 13.4477 9.00049 14C9.00051 14.5523 9.44822 15 10.0005 15H14.0005C14.5525 14.9997 15.0005 14.5521 15.0005 14C15.0005 13.4479 14.5525 13.0003 14.0005 13H10.0005ZM10.0005 9C9.4482 9 9.00049 9.44771 9.00049 10C9.00051 10.5523 9.44822 11 10.0005 11H14.0005C14.5525 10.9997 15.0005 10.5521 15.0005 10C15.0005 9.44788 14.5525 9.00026 14.0005 9H10.0005ZM10.0005 5C9.4482 5 9.00049 5.44772 9.00049 6C9.00051 6.55226 9.44822 7 10.0005 7H14.0005C14.5525 6.99974 15.0005 6.5521 15.0005 6C15.0005 5.44788 14.5525 5.00026 14.0005 5H10.0005Z"
|
|
30
|
+
fill="currentColor"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export default SvgPropertiesFilled;
|
|
@@ -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 SvgPropertiesLinear = ({ 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 3C7.73478 3 7.48043 3.10536 7.29289 3.29289C7.10536 3.48043 7 3.73478 7 4V21H17V4C17 3.73478 16.8946 3.48043 16.7071 3.29289C16.5196 3.10536 16.2652 3 16 3H8ZM5.87868 1.87868C6.44129 1.31607 7.20435 1 8 1H16C16.7956 1 17.5587 1.31607 18.1213 1.87868C18.6839 2.44129 19 3.20435 19 4V22C19 22.5523 18.5523 23 18 23H6C5.44772 23 5 22.5523 5 22V4C5 3.20435 5.31607 2.44129 5.87868 1.87868Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M1.87868 11.8787C2.44129 11.3161 3.20435 11 4 11H6C6.55228 11 7 11.4477 7 12C7 12.5523 6.55228 13 6 13H4C3.73478 13 3.48043 13.1054 3.29289 13.2929C3.10536 13.4804 3 13.7348 3 14V20C3 20.2652 3.10536 20.5196 3.29289 20.7071C3.48043 20.8946 3.73478 21 4 21H6C6.55228 21 7 21.4477 7 22C7 22.5523 6.55228 23 6 23H4C3.20435 23 2.44129 22.6839 1.87868 22.1213C1.31607 21.5587 1 20.7957 1 20V14C1 13.2044 1.31607 12.4413 1.87868 11.8787Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M17 9C17 8.44772 17.4477 8 18 8H20C20.7957 8 21.5587 8.31607 22.1213 8.87868C22.6839 9.44129 23 10.2043 23 11V20C23 20.7957 22.6839 21.5587 22.1213 22.1213C21.5587 22.6839 20.7957 23 20 23H18C17.4477 23 17 22.5523 17 22C17 21.4477 17.4477 21 18 21H20C20.2652 21 20.5196 20.8946 20.7071 20.7071C20.8946 20.5196 21 20.2652 21 20V11C21 10.7348 20.8946 10.4804 20.7071 10.2929C20.5196 10.1054 20.2652 10 20 10H18C17.4477 10 17 9.55228 17 9Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M9 6C9 5.44772 9.44771 5 10 5H14C14.5523 5 15 5.44772 15 6C15 6.55228 14.5523 7 14 7H10C9.44771 7 9 6.55228 9 6Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M9 10C9 9.44771 9.44771 9 10 9H14C14.5523 9 15 9.44771 15 10C15 10.5523 14.5523 11 14 11H10C9.44771 11 9 10.5523 9 10Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M9 14C9 13.4477 9.44771 13 10 13H14C14.5523 13 15 13.4477 15 14C15 14.5523 14.5523 15 14 15H10C9.44771 15 9 14.5523 9 14Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
fillRule="evenodd"
|
|
54
|
+
clipRule="evenodd"
|
|
55
|
+
d="M9 18C9 17.4477 9.44771 17 10 17H14C14.5523 17 15 17.4477 15 18C15 18.5523 14.5523 19 14 19H10C9.44771 19 9 18.5523 9 18Z"
|
|
56
|
+
fill="currentColor"
|
|
57
|
+
/>
|
|
58
|
+
</svg>
|
|
59
|
+
);
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export default SvgPropertiesLinear;
|
|
@@ -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;
|
package/src/react/index.ts
CHANGED
|
@@ -1,13 +1,42 @@
|
|
|
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';
|
|
6
20
|
export { default as EyeHidden } from './EyeHidden';
|
|
7
21
|
export { default as EyeVisible } from './EyeVisible';
|
|
22
|
+
export { default as FileKey } from './FileKey';
|
|
23
|
+
export { default as HomeFilled } from './HomeFilled';
|
|
24
|
+
export { default as HomeLinear } from './HomeLinear';
|
|
8
25
|
export { default as IconSlot } from './IconSlot';
|
|
26
|
+
export { default as Keys01 } from './Keys01';
|
|
27
|
+
export { default as LeadsFilled } from './LeadsFilled';
|
|
28
|
+
export { default as LeadsLinear } from './LeadsLinear';
|
|
29
|
+
export { default as Mail } from './Mail';
|
|
30
|
+
export { default as Mortgage } from './Mortgage';
|
|
31
|
+
export { default as Payments } from './Payments';
|
|
32
|
+
export { default as PropertiesFilled } from './PropertiesFilled';
|
|
33
|
+
export { default as PropertiesLinear } from './PropertiesLinear';
|
|
34
|
+
export { default as Rent } from './Rent';
|
|
9
35
|
export { default as Search } from './Search';
|
|
36
|
+
export { default as SearchX } from './SearchX';
|
|
37
|
+
export { default as Share } from './Share';
|
|
10
38
|
export { default as User } from './User';
|
|
39
|
+
export { default as Whatsapp } from './Whatsapp';
|
|
11
40
|
|
|
12
41
|
// Unified Icon component
|
|
13
42
|
export { default as Icon } from './Icon';
|
package/src/react/index.tsx
CHANGED
|
@@ -1,9 +1,38 @@
|
|
|
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';
|
|
5
19
|
export { default as EyeHidden } from './EyeHidden';
|
|
6
20
|
export { default as EyeVisible } from './EyeVisible';
|
|
21
|
+
export { default as FileKey } from './FileKey';
|
|
22
|
+
export { default as HomeFilled } from './HomeFilled';
|
|
23
|
+
export { default as HomeLinear } from './HomeLinear';
|
|
7
24
|
export { default as IconSlot } from './IconSlot';
|
|
25
|
+
export { default as Keys01 } from './Keys01';
|
|
26
|
+
export { default as LeadsFilled } from './LeadsFilled';
|
|
27
|
+
export { default as LeadsLinear } from './LeadsLinear';
|
|
28
|
+
export { default as Mail } from './Mail';
|
|
29
|
+
export { default as Mortgage } from './Mortgage';
|
|
30
|
+
export { default as Payments } from './Payments';
|
|
31
|
+
export { default as PropertiesFilled } from './PropertiesFilled';
|
|
32
|
+
export { default as PropertiesLinear } from './PropertiesLinear';
|
|
33
|
+
export { default as Rent } from './Rent';
|
|
34
|
+
export { default as SearchX } from './SearchX';
|
|
8
35
|
export { default as Search } from './Search';
|
|
36
|
+
export { default as Share } from './Share';
|
|
9
37
|
export { default as User } from './User';
|
|
38
|
+
export { default as Whatsapp } from './Whatsapp';
|