huspy-icons 0.3.0 → 0.3.2
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 +74 -53
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +56 -49
- package/dist/fonts/HuspyIcons.ts +70 -49
- 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 +56 -49
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +16 -2
- package/dist/react/index.d.ts +16 -2
- package/dist/react/index.js +752 -242
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +710 -200
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +57 -50
- package/src/react/BedDouble.tsx +44 -0
- package/src/react/Building.tsx +86 -0
- package/src/react/FaceId.tsx +52 -0
- package/src/react/FingerprintAndroid.tsx +24 -0
- package/src/react/Icon.tsx +22 -1
- package/src/react/MapPin.tsx +32 -0
- package/src/react/Sale.tsx +38 -0
- package/src/react/Size3D.tsx +44 -0
- package/src/react/index.ts +7 -0
- package/src/react/index.tsx +7 -0
package/package.json
CHANGED
package/src/native/glyphMap.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* Available icon names in the HuspyIcons font
|
|
6
6
|
*/
|
|
7
|
-
export type IconName = 'whatsapp' | 'user' | 'trash-2' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-check' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';
|
|
7
|
+
export type IconName = 'whatsapp' | 'user' | 'trash-2' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'map-pin' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'fingerprint-android' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-check' | 'face-id' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'building' | 'bell' | 'bed-double' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Mapping of icon names to unicode codepoints
|
|
@@ -14,55 +14,62 @@ export const glyphMap: Record<IconName, number> = {
|
|
|
14
14
|
"whatsapp": 61697,
|
|
15
15
|
"user": 61698,
|
|
16
16
|
"trash-2": 61699,
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"search
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"file-
|
|
42
|
-
"file-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"arrow-
|
|
64
|
-
"arrow-
|
|
65
|
-
"
|
|
17
|
+
"size-3d": 61700,
|
|
18
|
+
"share": 61701,
|
|
19
|
+
"search": 61702,
|
|
20
|
+
"search-x": 61703,
|
|
21
|
+
"sale": 61704,
|
|
22
|
+
"rent": 61705,
|
|
23
|
+
"properties-linear": 61706,
|
|
24
|
+
"properties-filled": 61707,
|
|
25
|
+
"plus": 61708,
|
|
26
|
+
"payments": 61709,
|
|
27
|
+
"note": 61710,
|
|
28
|
+
"mortgage": 61711,
|
|
29
|
+
"map-pin": 61712,
|
|
30
|
+
"mail": 61713,
|
|
31
|
+
"logout": 61714,
|
|
32
|
+
"lock": 61715,
|
|
33
|
+
"leads-linear": 61716,
|
|
34
|
+
"leads-filled": 61717,
|
|
35
|
+
"keys_01": 61718,
|
|
36
|
+
"icon-slot": 61719,
|
|
37
|
+
"home-linear": 61720,
|
|
38
|
+
"home-filled": 61721,
|
|
39
|
+
"help-circle": 61722,
|
|
40
|
+
"fingerprint-android": 61723,
|
|
41
|
+
"file-text": 61724,
|
|
42
|
+
"file-spreadsheet": 61725,
|
|
43
|
+
"file-signature": 61726,
|
|
44
|
+
"file-lock": 61727,
|
|
45
|
+
"file-key": 61728,
|
|
46
|
+
"file-check": 61729,
|
|
47
|
+
"face-id": 61730,
|
|
48
|
+
"eye-visible": 61731,
|
|
49
|
+
"eye-hidden": 61732,
|
|
50
|
+
"explore-linear": 61733,
|
|
51
|
+
"explore-filled": 61734,
|
|
52
|
+
"edit": 61735,
|
|
53
|
+
"chevron-up": 61736,
|
|
54
|
+
"chevron-right": 61737,
|
|
55
|
+
"chevron-left": 61738,
|
|
56
|
+
"chevron-down": 61739,
|
|
57
|
+
"check": 61740,
|
|
58
|
+
"cancel": 61741,
|
|
59
|
+
"cancel-circle-solid": 61742,
|
|
60
|
+
"building": 61743,
|
|
61
|
+
"bell": 61744,
|
|
62
|
+
"bed-double": 61745,
|
|
63
|
+
"arrow-up": 61746,
|
|
64
|
+
"arrow-up-right": 61747,
|
|
65
|
+
"arrow-up-left": 61748,
|
|
66
|
+
"arrow-up-down": 61749,
|
|
67
|
+
"arrow-right": 61750,
|
|
68
|
+
"arrow-left": 61751,
|
|
69
|
+
"arrow-down": 61752,
|
|
70
|
+
"arrow-down-right": 61753,
|
|
71
|
+
"arrow-down-left": 61754,
|
|
72
|
+
"alert-triangle": 61755
|
|
66
73
|
};
|
|
67
74
|
|
|
68
75
|
/**
|
|
@@ -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 SvgBedDouble = ({ 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="M4 11C3.73478 11 3.48043 11.1054 3.29289 11.2929C3.10536 11.4804 3 11.7348 3 12V20C3 20.5523 2.55228 21 2 21C1.44772 21 1 20.5523 1 20V12C1 11.2044 1.31607 10.4413 1.87868 9.87868C2.44129 9.31607 3.20435 9 4 9H20C20.7957 9 21.5587 9.31607 22.1213 9.87868C22.6839 10.4413 23 11.2043 23 12V20C23 20.5523 22.5523 21 22 21C21.4477 21 21 20.5523 21 20V12C21 11.7348 20.8946 11.4804 20.7071 11.2929C20.5196 11.1054 20.2652 11 20 11H4Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M6 5C5.73478 5 5.48043 5.10536 5.29289 5.29289C5.10536 5.48043 5 5.73478 5 6V10C5 10.5523 4.55228 11 4 11C3.44772 11 3 10.5523 3 10V6C3 5.20435 3.31607 4.44129 3.87868 3.87868C4.44129 3.31607 5.20435 3 6 3H18C18.7957 3 19.5587 3.31607 20.1213 3.87868C20.6839 4.44129 21 5.20435 21 6V10C21 10.5523 20.5523 11 20 11C19.4477 11 19 10.5523 19 10V6C19 5.73478 18.8946 5.48043 18.7071 5.29289C18.5196 5.10536 18.2652 5 18 5H6Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M12 3C12.5523 3 13 3.44772 13 4V10C13 10.5523 12.5523 11 12 11C11.4477 11 11 10.5523 11 10V4C11 3.44772 11.4477 3 12 3Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M1 18C1 17.4477 1.44772 17 2 17H22C22.5523 17 23 17.4477 23 18C23 18.5523 22.5523 19 22 19H2C1.44772 19 1 18.5523 1 18Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export default SvgBedDouble;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgBuilding = ({ 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 3C5.44772 3 5 3.44772 5 4V20C5 20.5523 5.44772 21 6 21H18C18.5523 21 19 20.5523 19 20V4C19 3.44772 18.5523 3 18 3H6ZM3 4C3 2.34315 4.34315 1 6 1H18C19.6569 1 21 2.34315 21 4V20C21 21.6569 19.6569 23 18 23H6C4.34315 23 3 21.6569 3 20V4Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M8 18C8 17.4477 8.44772 17 9 17H15C15.5523 17 16 17.4477 16 18V22C16 22.5523 15.5523 23 15 23C14.4477 23 14 22.5523 14 22V19H10V22C10 22.5523 9.55228 23 9 23C8.44772 23 8 22.5523 8 22V18Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M7 6C7 5.44772 7.44772 5 8 5H8.01C8.56228 5 9.01 5.44772 9.01 6C9.01 6.55228 8.56228 7 8.01 7H8C7.44772 7 7 6.55228 7 6Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M15 6C15 5.44772 15.4477 5 16 5H16.01C16.5623 5 17.01 5.44772 17.01 6C17.01 6.55228 16.5623 7 16.01 7H16C15.4477 7 15 6.55228 15 6Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M11 6C11 5.44772 11.4477 5 12 5H12.01C12.5623 5 13.01 5.44772 13.01 6C13.01 6.55228 12.5623 7 12.01 7H12C11.4477 7 11 6.55228 11 6Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M11 10C11 9.44771 11.4477 9 12 9H12.01C12.5623 9 13.01 9.44771 13.01 10C13.01 10.5523 12.5623 11 12.01 11H12C11.4477 11 11 10.5523 11 10Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
fillRule="evenodd"
|
|
54
|
+
clipRule="evenodd"
|
|
55
|
+
d="M11 14C11 13.4477 11.4477 13 12 13H12.01C12.5623 13 13.01 13.4477 13.01 14C13.01 14.5523 12.5623 15 12.01 15H12C11.4477 15 11 14.5523 11 14Z"
|
|
56
|
+
fill="currentColor"
|
|
57
|
+
/>
|
|
58
|
+
<path
|
|
59
|
+
fillRule="evenodd"
|
|
60
|
+
clipRule="evenodd"
|
|
61
|
+
d="M15 10C15 9.44771 15.4477 9 16 9H16.01C16.5623 9 17.01 9.44771 17.01 10C17.01 10.5523 16.5623 11 16.01 11H16C15.4477 11 15 10.5523 15 10Z"
|
|
62
|
+
fill="currentColor"
|
|
63
|
+
/>
|
|
64
|
+
<path
|
|
65
|
+
fillRule="evenodd"
|
|
66
|
+
clipRule="evenodd"
|
|
67
|
+
d="M15 14C15 13.4477 15.4477 13 16 13H16.01C16.5623 13 17.01 13.4477 17.01 14C17.01 14.5523 16.5623 15 16.01 15H16C15.4477 15 15 14.5523 15 14Z"
|
|
68
|
+
fill="currentColor"
|
|
69
|
+
/>
|
|
70
|
+
<path
|
|
71
|
+
fillRule="evenodd"
|
|
72
|
+
clipRule="evenodd"
|
|
73
|
+
d="M7 10C7 9.44771 7.44772 9 8 9H8.01C8.56228 9 9.01 9.44771 9.01 10C9.01 10.5523 8.56228 11 8.01 11H8C7.44772 11 7 10.5523 7 10Z"
|
|
74
|
+
fill="currentColor"
|
|
75
|
+
/>
|
|
76
|
+
<path
|
|
77
|
+
fillRule="evenodd"
|
|
78
|
+
clipRule="evenodd"
|
|
79
|
+
d="M7 14C7 13.4477 7.44772 13 8 13H8.01C8.56228 13 9.01 13.4477 9.01 14C9.01 14.5523 8.56228 15 8.01 15H8C7.44772 15 7 14.5523 7 14Z"
|
|
80
|
+
fill="currentColor"
|
|
81
|
+
/>
|
|
82
|
+
</svg>
|
|
83
|
+
);
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
export default SvgBuilding;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgFaceId = ({ 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="M13.9145 15.5719C14.3166 15.2798 14.8797 15.3692 15.1719 15.7713C15.464 16.1734 15.3745 16.7365 14.9725 17.0287C14.2541 17.5507 13.1722 18.1007 11.7994 18.1007C10.4266 18.1006 9.34461 17.5507 8.62624 17.0287C8.22423 16.7365 8.13483 16.1734 8.42684 15.7713C8.719 15.3693 9.28216 15.2799 9.68423 15.5719C10.2042 15.9498 10.9224 16.3003 11.7994 16.3003C12.6764 16.3003 13.3945 15.9498 13.9145 15.5719Z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M15.3999 10.9008V9.10037C15.3999 8.60331 15.8026 8.20059 16.2997 8.20059C16.7967 8.20059 17.1994 8.60331 17.1994 9.10037V10.9008C17.1992 11.3976 16.7966 11.8005 16.2997 11.8005C15.8027 11.8005 15.4001 11.3976 15.3999 10.9008Z"
|
|
22
|
+
fill="currentColor"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M6.39986 10.9008V9.10037C6.39986 8.60331 6.80258 8.20059 7.29964 8.20059C7.7967 8.20059 8.19942 8.60331 8.19942 9.10037V10.9008C8.19922 11.3976 7.79657 11.8005 7.29964 11.8005C6.80271 11.8005 6.40007 11.3976 6.39986 10.9008Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M10.8999 9.10037C10.8999 8.60339 11.3027 8.20071 11.7997 8.20059C12.2967 8.20059 12.7003 8.60331 12.7003 9.10037V12.7003C12.7003 13.6942 11.8937 14.5007 10.8999 14.5007C10.4028 14.5007 10.0001 14.0972 10.0001 13.6001C10.0002 13.1032 10.4029 12.7003 10.8999 12.7003V9.10037Z"
|
|
30
|
+
fill="currentColor"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M20.7999 6.39952V3.70017C20.7999 3.20278 20.3975 2.79965 19.9001 2.79956H17.1999C16.7029 2.79956 16.3001 2.39684 16.3001 1.89978C16.3001 1.40272 16.7029 1 17.1999 1H19.9001C21.3916 1.00009 22.6003 2.20867 22.6003 3.70017V6.39952C22.6003 6.89657 22.1967 7.30012 21.6997 7.30012C21.2027 7.29997 20.7999 6.89648 20.7999 6.39952Z"
|
|
34
|
+
fill="currentColor"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M1.00014 6.39979V3.70044C1.00014 2.20889 2.20875 1.00027 3.70031 1.00027H6.39965C6.89671 1.00027 7.30026 1.403 7.30026 1.90006C7.30026 2.39711 6.89671 2.79984 6.39965 2.79984H3.70031C3.20286 2.79984 2.7997 3.203 2.7997 3.70044V6.39979C2.7997 6.89685 2.39698 7.3004 1.89992 7.3004C1.40286 7.3004 1.00014 6.89685 1.00014 6.39979Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
d="M20.7999 19.9001V17.1999C20.7999 16.703 21.2027 16.3003 21.6997 16.3001C22.1967 16.3001 22.6003 16.7029 22.6003 17.1999V19.9001C22.6002 21.3915 21.3915 22.6002 19.9001 22.6003H17.1999C16.7029 22.6003 16.3001 22.1967 16.3001 21.6997C16.3003 21.2027 16.703 20.7999 17.1999 20.7999H19.9001C20.3974 20.7998 20.7998 20.3974 20.7999 19.9001Z"
|
|
42
|
+
fill="currentColor"
|
|
43
|
+
/>
|
|
44
|
+
<path
|
|
45
|
+
d="M1 19.9001V17.1999C1 16.7029 1.40272 16.3001 1.89978 16.3001C2.39684 16.3001 2.79956 16.7029 2.79956 17.1999V19.9001C2.79965 20.3975 3.20278 20.7999 3.70017 20.7999H6.39952C6.89648 20.7999 7.29997 21.2027 7.30012 21.6997C7.30012 22.1967 6.89657 22.6003 6.39952 22.6003H3.70017C2.20867 22.6003 1.00009 21.3916 1 19.9001Z"
|
|
46
|
+
fill="currentColor"
|
|
47
|
+
/>
|
|
48
|
+
</svg>
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export default SvgFaceId;
|
|
@@ -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 SvgFingerprintAndroid = ({ 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="M18.3069 4.55233C18.2243 4.55233 18.1416 4.53167 18.0693 4.49033C16.0853 3.46733 14.3699 3.03333 12.3136 3.03333C10.2676 3.03333 8.32493 3.519 6.55793 4.49033C6.30993 4.62467 5.99993 4.53167 5.85526 4.28367C5.72093 4.03567 5.81393 3.71533 6.06193 3.581C7.98393 2.53733 10.0919 2 12.3136 2C14.5146 2 16.4366 2.48567 18.5446 3.57067C18.8029 3.705 18.8959 4.015 18.7616 4.263C18.6686 4.449 18.4929 4.55233 18.3069 4.55233ZM3.51993 9.97733C3.4166 9.97733 3.31326 9.94633 3.22026 9.88433C2.9826 9.719 2.93093 9.39867 3.09626 9.161C4.11926 7.71433 5.42126 6.57767 6.97126 5.782C10.2159 4.108 14.3699 4.09767 17.6249 5.77167C19.1749 6.56733 20.4769 7.69367 21.4999 9.13C21.6653 9.35733 21.6136 9.688 21.3759 9.85333C21.1383 10.0187 20.8179 9.967 20.6526 9.72933C19.7226 8.42733 18.5446 7.40433 17.1496 6.69133C14.1839 5.17233 10.3916 5.17233 7.43626 6.70167C6.03093 7.425 4.85293 8.45833 3.92293 9.76033C3.84026 9.905 3.68526 9.97733 3.51993 9.97733ZM9.97826 22.4497C9.84393 22.4497 9.7096 22.398 9.6166 22.2947C8.7176 21.3957 8.23193 20.817 7.5396 19.5667C6.8266 18.2957 6.4546 16.7457 6.4546 15.082C6.4546 12.013 9.07926 9.51233 12.3033 9.51233C15.5273 9.51233 18.1519 12.013 18.1519 15.082C18.1519 15.3713 17.9246 15.5987 17.6353 15.5987C17.3459 15.5987 17.1186 15.3713 17.1186 15.082C17.1186 12.5813 14.9589 10.5457 12.3033 10.5457C9.6476 10.5457 7.48793 12.5813 7.48793 15.082C7.48793 16.57 7.8186 17.9443 8.44893 19.0603C9.11027 20.2487 9.56493 20.755 10.3606 21.561C10.5569 21.7677 10.5569 22.088 10.3606 22.2947C10.2469 22.398 10.1126 22.4497 9.97826 22.4497ZM17.3873 20.538C16.1576 20.538 15.0726 20.228 14.1839 19.6183C12.6443 18.5747 11.7246 16.88 11.7246 15.082C11.7246 14.7927 11.9519 14.5653 12.2413 14.5653C12.5306 14.5653 12.7579 14.7927 12.7579 15.082C12.7579 16.539 13.5019 17.9133 14.7626 18.7607C15.4963 19.2567 16.3539 19.4943 17.3873 19.4943C17.6353 19.4943 18.0486 19.4633 18.4619 19.391C18.7409 19.3393 19.0096 19.5253 19.0613 19.8147C19.1129 20.0937 18.9269 20.3623 18.6376 20.414C18.0486 20.5277 17.5319 20.538 17.3873 20.538ZM15.3103 22.6667C15.2689 22.6667 15.2173 22.6563 15.1759 22.646C13.5329 22.1913 12.4583 21.5817 11.3319 20.476C9.88526 19.0397 9.0896 17.128 9.0896 15.082C9.0896 13.408 10.5156 12.044 12.2723 12.044C14.0289 12.044 15.4549 13.408 15.4549 15.082C15.4549 16.1877 16.4159 17.0867 17.6043 17.0867C18.7926 17.0867 19.7536 16.1877 19.7536 15.082C19.7536 11.1863 16.3953 8.02433 12.2619 8.02433C9.32726 8.02433 6.6406 9.657 5.4316 12.1887C5.0286 13.0257 4.82193 14.0073 4.82193 15.082C4.82193 15.888 4.89426 17.159 5.51426 18.8123C5.6176 19.081 5.48326 19.3807 5.2146 19.4737C4.94593 19.577 4.64626 19.4323 4.55326 19.174C4.04693 17.8203 3.79893 16.477 3.79893 15.082C3.79893 13.842 4.0366 12.7157 4.5016 11.734C5.87593 8.851 8.92426 6.98067 12.2619 6.98067C16.9636 6.98067 20.7869 10.6077 20.7869 15.0717C20.7869 16.7457 19.3609 18.1097 17.6043 18.1097C15.8476 18.1097 14.4216 16.7457 14.4216 15.0717C14.4216 13.966 13.4606 13.067 12.2723 13.067C11.0839 13.067 10.1229 13.966 10.1229 15.0717C10.1229 16.8387 10.8049 18.492 12.0553 19.732C13.0369 20.7033 13.9773 21.2407 15.4343 21.6437C15.7133 21.716 15.8683 22.0053 15.7959 22.274C15.7443 22.5117 15.5273 22.6667 15.3103 22.6667Z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default SvgFingerprintAndroid;
|
package/src/react/Icon.tsx
CHANGED
|
@@ -15,7 +15,9 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
15
15
|
// Icon: arrow-up-down
|
|
16
16
|
// Icon: arrow-up-left
|
|
17
17
|
// Icon: arrow-up-right
|
|
18
|
+
// Icon: bed-double
|
|
18
19
|
// Icon: bell
|
|
20
|
+
// Icon: building
|
|
19
21
|
// Icon: cancel
|
|
20
22
|
// Icon: cancel-circle-solid
|
|
21
23
|
// Icon: check
|
|
@@ -28,12 +30,14 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
28
30
|
// Icon: explore-linear
|
|
29
31
|
// Icon: eye-hidden
|
|
30
32
|
// Icon: eye-visible
|
|
33
|
+
// Icon: face-id
|
|
31
34
|
// Icon: file-check
|
|
32
35
|
// Icon: file-key
|
|
33
36
|
// Icon: file-lock
|
|
34
37
|
// Icon: file-signature
|
|
35
38
|
// Icon: file-spreadsheet
|
|
36
39
|
// Icon: file-text
|
|
40
|
+
// Icon: fingerprint-android
|
|
37
41
|
// Icon: help-circle
|
|
38
42
|
// Icon: home-filled
|
|
39
43
|
// Icon: home-linear
|
|
@@ -44,6 +48,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
44
48
|
// Icon: lock
|
|
45
49
|
// Icon: logout
|
|
46
50
|
// Icon: mail
|
|
51
|
+
// Icon: map-pin
|
|
47
52
|
// Icon: mortgage
|
|
48
53
|
// Icon: note
|
|
49
54
|
// Icon: payments
|
|
@@ -51,9 +56,11 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
51
56
|
// Icon: properties-filled
|
|
52
57
|
// Icon: properties-linear
|
|
53
58
|
// Icon: rent
|
|
59
|
+
// Icon: sale
|
|
54
60
|
// Icon: search
|
|
55
61
|
// Icon: search-x
|
|
56
62
|
// Icon: share
|
|
63
|
+
// Icon: size3d
|
|
57
64
|
// Icon: trash2
|
|
58
65
|
// Icon: user
|
|
59
66
|
// Icon: whatsapp
|
|
@@ -61,7 +68,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
61
68
|
/**
|
|
62
69
|
* Available icon names
|
|
63
70
|
*/
|
|
64
|
-
export type IconName = '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' | 'bell' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'file-check' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'search' | 'search-x' | 'share' | 'trash2' | 'user' | 'whatsapp';
|
|
71
|
+
export type IconName = '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' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-id' | 'file-check' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'fingerprint-android' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'map-pin' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'trash2' | 'user' | 'whatsapp';
|
|
65
72
|
|
|
66
73
|
/**
|
|
67
74
|
* Props for the unified Icon component
|
|
@@ -101,8 +108,12 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
101
108
|
return import('./ArrowUpLeft').then(m => m.default);
|
|
102
109
|
case 'arrow-up-right':
|
|
103
110
|
return import('./ArrowUpRight').then(m => m.default);
|
|
111
|
+
case 'bed-double':
|
|
112
|
+
return import('./BedDouble').then(m => m.default);
|
|
104
113
|
case 'bell':
|
|
105
114
|
return import('./Bell').then(m => m.default);
|
|
115
|
+
case 'building':
|
|
116
|
+
return import('./Building').then(m => m.default);
|
|
106
117
|
case 'cancel':
|
|
107
118
|
return import('./Cancel').then(m => m.default);
|
|
108
119
|
case 'cancel-circle-solid':
|
|
@@ -127,6 +138,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
127
138
|
return import('./EyeHidden').then(m => m.default);
|
|
128
139
|
case 'eye-visible':
|
|
129
140
|
return import('./EyeVisible').then(m => m.default);
|
|
141
|
+
case 'face-id':
|
|
142
|
+
return import('./FaceId').then(m => m.default);
|
|
130
143
|
case 'file-check':
|
|
131
144
|
return import('./FileCheck').then(m => m.default);
|
|
132
145
|
case 'file-key':
|
|
@@ -139,6 +152,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
139
152
|
return import('./FileSpreadsheet').then(m => m.default);
|
|
140
153
|
case 'file-text':
|
|
141
154
|
return import('./FileText').then(m => m.default);
|
|
155
|
+
case 'fingerprint-android':
|
|
156
|
+
return import('./FingerprintAndroid').then(m => m.default);
|
|
142
157
|
case 'help-circle':
|
|
143
158
|
return import('./HelpCircle').then(m => m.default);
|
|
144
159
|
case 'home-filled':
|
|
@@ -159,6 +174,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
159
174
|
return import('./Logout').then(m => m.default);
|
|
160
175
|
case 'mail':
|
|
161
176
|
return import('./Mail').then(m => m.default);
|
|
177
|
+
case 'map-pin':
|
|
178
|
+
return import('./MapPin').then(m => m.default);
|
|
162
179
|
case 'mortgage':
|
|
163
180
|
return import('./Mortgage').then(m => m.default);
|
|
164
181
|
case 'note':
|
|
@@ -173,12 +190,16 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
173
190
|
return import('./PropertiesLinear').then(m => m.default);
|
|
174
191
|
case 'rent':
|
|
175
192
|
return import('./Rent').then(m => m.default);
|
|
193
|
+
case 'sale':
|
|
194
|
+
return import('./Sale').then(m => m.default);
|
|
176
195
|
case 'search':
|
|
177
196
|
return import('./Search').then(m => m.default);
|
|
178
197
|
case 'search-x':
|
|
179
198
|
return import('./SearchX').then(m => m.default);
|
|
180
199
|
case 'share':
|
|
181
200
|
return import('./Share').then(m => m.default);
|
|
201
|
+
case 'size3d':
|
|
202
|
+
return import('./Size3D').then(m => m.default);
|
|
182
203
|
case 'trash2':
|
|
183
204
|
return import('./Trash2').then(m => m.default);
|
|
184
205
|
case 'user':
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgMapPin = ({ 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="M12 3C10.1435 3 8.36301 3.7375 7.05025 5.05025C5.7375 6.36301 5 8.14348 5 10C5 12.605 6.77047 15.3616 8.74741 17.5856C9.71242 18.6713 10.6805 19.5792 11.4085 20.2162C11.6312 20.411 11.8307 20.5799 12 20.7202C12.1693 20.5799 12.3688 20.411 12.5915 20.2162C13.3195 19.5792 14.2876 18.6713 15.2526 17.5856C17.2295 15.3616 19 12.605 19 10C19 8.14348 18.2625 6.36301 16.9497 5.05025C15.637 3.7375 13.8565 3 12 3ZM12 22C11.4 22.8 11.3998 22.7998 11.3995 22.7997L11.397 22.7978L11.3912 22.7933L11.3709 22.778C11.3537 22.7648 11.3291 22.746 11.2976 22.7216C11.2346 22.6728 11.1441 22.6017 11.0299 22.51C10.8016 22.3265 10.4782 22.0597 10.0915 21.7213C9.31946 21.0458 8.28758 20.0787 7.25259 18.9144C5.22953 16.6384 3 13.395 3 10C3 7.61305 3.94821 5.32387 5.63604 3.63604C7.32387 1.94821 9.61305 1 12 1C14.3869 1 16.6761 1.94821 18.364 3.63604C20.0518 5.32387 21 7.61305 21 10C21 13.395 18.7705 16.6384 16.7474 18.9144C15.7124 20.0787 14.6805 21.0458 13.9085 21.7213C13.5218 22.0597 13.1984 22.3265 12.9701 22.51C12.8559 22.6017 12.7654 22.6728 12.7024 22.7216C12.6709 22.746 12.6463 22.7648 12.6291 22.778L12.6088 22.7933L12.603 22.7978L12.6011 22.7992C12.6009 22.7993 12.6 22.8 12 22ZM12 22L12.6 22.8C12.2444 23.0667 11.7551 23.0663 11.3995 22.7997L12 22Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M12 8C10.8954 8 10 8.89543 10 10C10 11.1046 10.8954 12 12 12C13.1046 12 14 11.1046 14 10C14 8.89543 13.1046 8 12 8ZM8 10C8 7.79086 9.79086 6 12 6C14.2091 6 16 7.79086 16 10C16 12.2091 14.2091 14 12 14C9.79086 14 8 12.2091 8 10Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export default SvgMapPin;
|
|
@@ -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 SvgSale = ({ 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.48499 2.34965C10.9495 1.18879 13.0287 1.18879 14.4933 2.34965L14.4957 2.35151L20.763 7.34974C21.5703 7.97063 22.0518 8.92435 22.0658 9.94317L22.066 9.95693L22.0659 18.2761C22.0659 20.6507 20.1242 22.5585 17.7503 22.5585H6.25549C3.88162 22.5585 1.93994 20.6507 1.93994 18.2761V9.9561C1.95003 8.93514 2.43236 7.97867 3.2428 7.35876L9.48499 2.34965ZM10.7341 3.92127L4.48935 8.93249C4.48209 8.93831 4.47476 8.94403 4.46734 8.94965C4.14236 9.1959 3.95276 9.57328 3.94752 9.97168V18.2761C3.94752 19.523 4.97129 20.551 6.25549 20.551H17.7503C19.0345 20.551 20.0583 19.523 20.0583 18.2761V9.96472C20.051 9.56487 19.8606 9.1866 19.5355 8.93827L19.5188 8.9253L13.2463 3.92294L13.2452 3.92209C12.5119 3.34168 11.4677 3.34141 10.7341 3.92127Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M7.87868 8.87868C8.44129 8.31607 9.20435 8 10 8H16C16.5523 8 17 8.44772 17 9C17 9.55228 16.5523 10 16 10H10C9.73478 10 9.48043 10.1054 9.29289 10.2929C9.10536 10.4804 9 10.7348 9 11C9 11.2652 9.10536 11.5196 9.29289 11.7071C9.48043 11.8946 9.73478 12 10 12H14C14.7957 12 15.5587 12.3161 16.1213 12.8787C16.6839 13.4413 17 14.2043 17 15C17 15.7957 16.6839 16.5587 16.1213 17.1213C15.5587 17.6839 14.7957 18 14 18H8C7.44772 18 7 17.5523 7 17C7 16.4477 7.44772 16 8 16H14C14.2652 16 14.5196 15.8946 14.7071 15.7071C14.8946 15.5196 15 15.2652 15 15C15 14.7348 14.8946 14.4804 14.7071 14.2929C14.5196 14.1054 14.2652 14 14 14H10C9.20435 14 8.44129 13.6839 7.87868 13.1213C7.31607 12.5587 7 11.7957 7 11C7 10.2043 7.31607 9.44129 7.87868 8.87868Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M12 6C12.5523 6 13 6.44772 13 7V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19V7C11 6.44772 11.4477 6 12 6Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export default SvgSale;
|
|
@@ -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 SvgSize3D = ({ 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 2C5.55228 2 6 2.44772 6 3V18H21C21.5523 18 22 18.4477 22 19C22 19.5523 21.5523 20 21 20H5C4.44772 20 4 19.5523 4 19V3C4 2.44772 4.44772 2 5 2Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M11.7071 12.2929C12.0976 12.6834 12.0976 13.3166 11.7071 13.7071L5.70711 19.7071C5.31658 20.0976 4.68342 20.0976 4.29289 19.7071C3.90237 19.3166 3.90237 18.6834 4.29289 18.2929L10.2929 12.2929C10.6834 11.9024 11.3166 11.9024 11.7071 12.2929Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M4.29289 2.29289C4.68342 1.90237 5.31658 1.90237 5.70711 2.29289L8.70711 5.29289C9.09763 5.68342 9.09763 6.31658 8.70711 6.70711C8.31658 7.09763 7.68342 7.09763 7.29289 6.70711L5 4.41421L2.70711 6.70711C2.31658 7.09763 1.68342 7.09763 1.29289 6.70711C0.902369 6.31658 0.902369 5.68342 1.29289 5.29289L4.29289 2.29289Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M17.2929 15.2929C17.6834 14.9024 18.3166 14.9024 18.7071 15.2929L21.7071 18.2929C22.0976 18.6834 22.0976 19.3166 21.7071 19.7071L18.7071 22.7071C18.3166 23.0976 17.6834 23.0976 17.2929 22.7071C16.9024 22.3166 16.9024 21.6834 17.2929 21.2929L19.5858 19L17.2929 16.7071C16.9024 16.3166 16.9024 15.6834 17.2929 15.2929Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
</svg>
|
|
41
|
+
);
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export default SvgSize3D;
|
package/src/react/index.ts
CHANGED
|
@@ -9,7 +9,9 @@ export { default as ArrowUp } from './ArrowUp';
|
|
|
9
9
|
export { default as ArrowUpDown } from './ArrowUpDown';
|
|
10
10
|
export { default as ArrowUpLeft } from './ArrowUpLeft';
|
|
11
11
|
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
12
|
+
export { default as BedDouble } from './BedDouble';
|
|
12
13
|
export { default as Bell } from './Bell';
|
|
14
|
+
export { default as Building } from './Building';
|
|
13
15
|
export { default as Cancel } from './Cancel';
|
|
14
16
|
export { default as CancelCircleSolid } from './CancelCircleSolid';
|
|
15
17
|
export { default as Check } from './Check';
|
|
@@ -22,12 +24,14 @@ export { default as ExploreFilled } from './ExploreFilled';
|
|
|
22
24
|
export { default as ExploreLinear } from './ExploreLinear';
|
|
23
25
|
export { default as EyeHidden } from './EyeHidden';
|
|
24
26
|
export { default as EyeVisible } from './EyeVisible';
|
|
27
|
+
export { default as FaceId } from './FaceId';
|
|
25
28
|
export { default as FileCheck } from './FileCheck';
|
|
26
29
|
export { default as FileKey } from './FileKey';
|
|
27
30
|
export { default as FileLock } from './FileLock';
|
|
28
31
|
export { default as FileSignature } from './FileSignature';
|
|
29
32
|
export { default as FileSpreadsheet } from './FileSpreadsheet';
|
|
30
33
|
export { default as FileText } from './FileText';
|
|
34
|
+
export { default as FingerprintAndroid } from './FingerprintAndroid';
|
|
31
35
|
export { default as HelpCircle } from './HelpCircle';
|
|
32
36
|
export { default as HomeFilled } from './HomeFilled';
|
|
33
37
|
export { default as HomeLinear } from './HomeLinear';
|
|
@@ -38,6 +42,7 @@ export { default as LeadsLinear } from './LeadsLinear';
|
|
|
38
42
|
export { default as Lock } from './Lock';
|
|
39
43
|
export { default as Logout } from './Logout';
|
|
40
44
|
export { default as Mail } from './Mail';
|
|
45
|
+
export { default as MapPin } from './MapPin';
|
|
41
46
|
export { default as Mortgage } from './Mortgage';
|
|
42
47
|
export { default as Note } from './Note';
|
|
43
48
|
export { default as Payments } from './Payments';
|
|
@@ -45,9 +50,11 @@ export { default as Plus } from './Plus';
|
|
|
45
50
|
export { default as PropertiesFilled } from './PropertiesFilled';
|
|
46
51
|
export { default as PropertiesLinear } from './PropertiesLinear';
|
|
47
52
|
export { default as Rent } from './Rent';
|
|
53
|
+
export { default as Sale } from './Sale';
|
|
48
54
|
export { default as Search } from './Search';
|
|
49
55
|
export { default as SearchX } from './SearchX';
|
|
50
56
|
export { default as Share } from './Share';
|
|
57
|
+
export { default as Size3D } from './Size3D';
|
|
51
58
|
export { default as Trash2 } from './Trash2';
|
|
52
59
|
export { default as User } from './User';
|
|
53
60
|
export { default as Whatsapp } from './Whatsapp';
|