huspy-icons 0.3.8 → 0.3.9
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 +108 -99
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +98 -95
- package/dist/fonts/HuspyIcons.ts +108 -99
- 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 +98 -95
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +11 -5
- package/dist/react/index.d.ts +11 -5
- package/dist/react/index.js +595 -441
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +537 -383
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +99 -96
- package/src/react/FaceAndroid.tsx +46 -0
- package/src/react/{FaceId.tsx → FaceIosBold.tsx} +2 -2
- package/src/react/FaceIosLight.tsx +24 -0
- package/src/react/Icon.tsx +16 -7
- package/src/react/{FingerprintAndroid.tsx → TouchAndroid.tsx} +2 -2
- package/src/react/TouchIos.tsx +24 -0
- package/src/react/index.ts +5 -2
- package/src/react/index.tsx +5 -2
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' | 'time' | 'thermometer-snowflake' | 'terrace' | 'swimming-pool' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | '
|
|
7
|
+
export type IconName = 'whatsapp' | 'user' | 'trash-2' | 'touch-ios' | 'touch-android' | 'time' | 'thermometer-snowflake' | 'terrace' | 'swimming-pool' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-ios-light' | 'face-ios-bold' | 'face-android' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'electric' | 'edit' | 'door-open' | 'collections' | 'closet' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'check-check' | 'cancel' | 'cancel-circle-stroke' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'bath' | 'balcony-window' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'archive' | 'alert-triangle' | 'air-conditioner' | 'add-note' | 'accessibility';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Mapping of icon names to unicode codepoints
|
|
@@ -14,101 +14,104 @@ export const glyphMap: Record<IconName, number> = {
|
|
|
14
14
|
"whatsapp": 61697,
|
|
15
15
|
"user": 61698,
|
|
16
16
|
"trash-2": 61699,
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"file-
|
|
67
|
-
"file-
|
|
68
|
-
"file-
|
|
69
|
-
"file-
|
|
70
|
-
"file-
|
|
71
|
-
"file-
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"chevron-
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"arrow-up
|
|
102
|
-
"arrow-right": 61785,
|
|
103
|
-
"arrow-left": 61786,
|
|
104
|
-
"arrow-down": 61787,
|
|
105
|
-
"arrow-
|
|
106
|
-
"arrow-
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
17
|
+
"touch-ios": 61700,
|
|
18
|
+
"touch-android": 61701,
|
|
19
|
+
"time": 61702,
|
|
20
|
+
"thermometer-snowflake": 61703,
|
|
21
|
+
"terrace": 61704,
|
|
22
|
+
"swimming-pool": 61705,
|
|
23
|
+
"size-3d": 61706,
|
|
24
|
+
"share": 61707,
|
|
25
|
+
"search": 61708,
|
|
26
|
+
"search-x": 61709,
|
|
27
|
+
"sale": 61710,
|
|
28
|
+
"restaurant": 61711,
|
|
29
|
+
"rent": 61712,
|
|
30
|
+
"properties-linear": 61713,
|
|
31
|
+
"properties-filled": 61714,
|
|
32
|
+
"promotion": 61715,
|
|
33
|
+
"plus": 61716,
|
|
34
|
+
"pin_map_solid": 61717,
|
|
35
|
+
"phone-linear": 61718,
|
|
36
|
+
"pet": 61719,
|
|
37
|
+
"pencil-line": 61720,
|
|
38
|
+
"payments": 61721,
|
|
39
|
+
"patio": 61722,
|
|
40
|
+
"parking": 61723,
|
|
41
|
+
"outside": 61724,
|
|
42
|
+
"notes": 61725,
|
|
43
|
+
"note": 61726,
|
|
44
|
+
"mortgage": 61727,
|
|
45
|
+
"more-horizontal": 61728,
|
|
46
|
+
"map-pin": 61729,
|
|
47
|
+
"mail": 61730,
|
|
48
|
+
"magic-wand": 61731,
|
|
49
|
+
"logout": 61732,
|
|
50
|
+
"lock": 61733,
|
|
51
|
+
"lift": 61734,
|
|
52
|
+
"leads-linear": 61735,
|
|
53
|
+
"leads-filled": 61736,
|
|
54
|
+
"keys_01": 61737,
|
|
55
|
+
"info": 61738,
|
|
56
|
+
"image": 61739,
|
|
57
|
+
"image-off": 61740,
|
|
58
|
+
"icon-slot": 61741,
|
|
59
|
+
"home-linear": 61742,
|
|
60
|
+
"home-filled": 61743,
|
|
61
|
+
"help-circle": 61744,
|
|
62
|
+
"heating": 61745,
|
|
63
|
+
"gas-heating": 61746,
|
|
64
|
+
"garden": 61747,
|
|
65
|
+
"filter": 61748,
|
|
66
|
+
"file-text": 61749,
|
|
67
|
+
"file-spreadsheet": 61750,
|
|
68
|
+
"file-signature": 61751,
|
|
69
|
+
"file-lock": 61752,
|
|
70
|
+
"file-key": 61753,
|
|
71
|
+
"file-input": 61754,
|
|
72
|
+
"file-check": 61755,
|
|
73
|
+
"face-ios-light": 61756,
|
|
74
|
+
"face-ios-bold": 61757,
|
|
75
|
+
"face-android": 61758,
|
|
76
|
+
"eye-visible": 61759,
|
|
77
|
+
"eye-hidden": 61760,
|
|
78
|
+
"explore-linear": 61761,
|
|
79
|
+
"explore-filled": 61762,
|
|
80
|
+
"electric": 61763,
|
|
81
|
+
"edit": 61764,
|
|
82
|
+
"door-open": 61765,
|
|
83
|
+
"collections": 61766,
|
|
84
|
+
"closet": 61767,
|
|
85
|
+
"chevron-up": 61768,
|
|
86
|
+
"chevron-right": 61769,
|
|
87
|
+
"chevron-left": 61770,
|
|
88
|
+
"chevron-down": 61771,
|
|
89
|
+
"check": 61772,
|
|
90
|
+
"check-circle-2": 61773,
|
|
91
|
+
"check-check": 61774,
|
|
92
|
+
"cancel": 61775,
|
|
93
|
+
"cancel-circle-stroke": 61776,
|
|
94
|
+
"cancel-circle-solid": 61777,
|
|
95
|
+
"calendar": 61778,
|
|
96
|
+
"building": 61779,
|
|
97
|
+
"bell": 61780,
|
|
98
|
+
"bed-double": 61781,
|
|
99
|
+
"bath": 61782,
|
|
100
|
+
"balcony-window": 61783,
|
|
101
|
+
"arrow-up": 61784,
|
|
102
|
+
"arrow-up-right": 61785,
|
|
103
|
+
"arrow-up-left": 61786,
|
|
104
|
+
"arrow-up-down": 61787,
|
|
105
|
+
"arrow-right": 61788,
|
|
106
|
+
"arrow-left": 61789,
|
|
107
|
+
"arrow-down": 61790,
|
|
108
|
+
"arrow-down-right": 61791,
|
|
109
|
+
"arrow-down-left": 61792,
|
|
110
|
+
"archive": 61793,
|
|
111
|
+
"alert-triangle": 61794,
|
|
112
|
+
"air-conditioner": 61795,
|
|
113
|
+
"add-note": 61796,
|
|
114
|
+
"accessibility": 61797
|
|
112
115
|
};
|
|
113
116
|
|
|
114
117
|
/**
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgFaceAndroid = ({ 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.951 23c6.102 0 11.049 -4.947 11.049 -11.049S18.053 0.902 11.951 0.902 0.902 5.849 0.902 11.951s4.947 11.049 11.049 11.049m0 0.902c6.601 0 11.951 -5.351 11.951 -11.951C23.902 5.351 18.552 0 11.951 0 5.351 0 0 5.351 0 11.951c0 6.601 5.351 11.951 11.951 11.951"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M13.98 18.282a0.496 0.496 0 0 1 -0.241 0.659c-1.148 0.533 -2.286 0.631 -3.219 0.203 -0.946 -0.434 -1.562 -1.355 -1.764 -2.603l0.98 -0.159c0.164 1.009 0.626 1.597 1.199 1.86 0.587 0.269 1.408 0.253 2.387 -0.201a0.496 0.496 0 0 1 0.659 0.241"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M12.628 13.304v-2.029h0.902v2.931H11.049v-0.902z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M18.265 9.02a0.902 0.902 0 1 1 -1.804 0 0.902 0.902 0 0 1 1.804 0"
|
|
36
|
+
fill="currentColor"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M7.441 9.02a0.902 0.902 0 1 1 -1.804 0 0.902 0.902 0 0 1 1.804 0"
|
|
40
|
+
fill="currentColor"
|
|
41
|
+
/>
|
|
42
|
+
</svg>
|
|
43
|
+
);
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export default SvgFaceAndroid;
|
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import type { ReactIconProps } from '../shared/types';
|
|
3
3
|
import { resolveSize } from '../shared/types';
|
|
4
4
|
|
|
5
|
-
const
|
|
5
|
+
const SvgFaceIosBold = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
6
|
const sizeValue = resolveSize(size);
|
|
7
7
|
|
|
8
8
|
return (
|
|
@@ -49,4 +49,4 @@ const SvgFaceId = ({ size = 16, ...props }: ReactIconProps) => {
|
|
|
49
49
|
);
|
|
50
50
|
};
|
|
51
51
|
|
|
52
|
-
export default
|
|
52
|
+
export default SvgFaceIosBold;
|
|
@@ -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 SvgFaceIosLight = ({ 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="M0.609 16.805a0.609 0.609 0 0 1 0.609 0.609v2.695c0 1.473 1.199 2.672 2.672 2.672H6.586a0.609 0.609 0 1 1 0 1.219H3.891C1.745 24 0 22.255 0 20.109V17.414a0.609 0.609 0 0 1 0.609 -0.609m22.781 0A0.609 0.609 0 0 1 24 17.414v2.695c0 2.145 -1.745 3.891 -3.891 3.891H17.414a0.609 0.609 0 1 1 0 -1.219h2.695c1.473 0 2.672 -1.199 2.672 -2.672V17.414a0.609 0.609 0 0 1 0.609 -0.609m-8.044 0.004a0.633 0.633 0 0 1 0.859 0.93A6.18 6.18 0 0 1 12 19.383c-1.564 0 -3.057 -0.584 -4.205 -1.645a0.633 0.633 0 0 1 0.859 -0.93A4.92 4.92 0 0 0 12 18.117a4.92 4.92 0 0 0 3.346 -1.309M12.633 8.414a0.633 0.633 0 0 1 0.633 0.633v4.5c0 0.892 -0.725 1.617 -1.617 1.617h-0.516a0.633 0.633 0 1 1 0 -1.266h0.516A0.352 0.352 0 0 0 12 13.547v-4.5a0.633 0.633 0 0 1 0.633 -0.633m-5.52 0a0.598 0.598 0 0 1 0.598 0.598v1.805a0.598 0.598 0 1 1 -1.195 0v-1.805a0.598 0.598 0 0 1 0.598 -0.598m9.914 0a0.598 0.598 0 0 1 0.598 0.598v1.805a0.598 0.598 0 1 1 -1.195 0v-1.805a0.598 0.598 0 0 1 0.598 -0.598M6.586 0a0.609 0.609 0 0 1 0 1.219H3.891c-1.473 0 -2.672 1.199 -2.672 2.672V6.586a0.609 0.609 0 0 1 -1.219 0V3.891C0 1.745 1.745 0 3.891 0zm13.523 0C22.255 0 24 1.745 24 3.891V6.586a0.609 0.609 0 1 1 -1.219 0V3.891c0 -1.473 -1.199 -2.672 -2.672 -2.672H17.414a0.609 0.609 0 0 1 0 -1.219z"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default SvgFaceIosLight;
|
package/src/react/Icon.tsx
CHANGED
|
@@ -44,7 +44,9 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
44
44
|
// Icon: explore-linear
|
|
45
45
|
// Icon: eye-hidden
|
|
46
46
|
// Icon: eye-visible
|
|
47
|
-
// Icon: face-
|
|
47
|
+
// Icon: face-android
|
|
48
|
+
// Icon: face-ios-bold
|
|
49
|
+
// Icon: face-ios-light
|
|
48
50
|
// Icon: file-check
|
|
49
51
|
// Icon: file-input
|
|
50
52
|
// Icon: file-key
|
|
@@ -53,7 +55,6 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
53
55
|
// Icon: file-spreadsheet
|
|
54
56
|
// Icon: file-text
|
|
55
57
|
// Icon: filter
|
|
56
|
-
// Icon: fingerprint-android
|
|
57
58
|
// Icon: garden
|
|
58
59
|
// Icon: gas-heating
|
|
59
60
|
// Icon: heating
|
|
@@ -100,6 +101,8 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
100
101
|
// Icon: terrace
|
|
101
102
|
// Icon: thermometer-snowflake
|
|
102
103
|
// Icon: time
|
|
104
|
+
// Icon: touch-android
|
|
105
|
+
// Icon: touch-ios
|
|
103
106
|
// Icon: trash2
|
|
104
107
|
// Icon: user
|
|
105
108
|
// Icon: whatsapp
|
|
@@ -107,7 +110,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
107
110
|
/**
|
|
108
111
|
* Available icon names
|
|
109
112
|
*/
|
|
110
|
-
export type IconName = 'accessibility' | 'add-note' | 'air-conditioner' | 'alert-triangle' | 'archive' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'balcony-window' | 'bath' | 'bed-double' | 'bell' | 'building' | 'calendar' | 'cancel' | 'cancel-circle-solid' | 'cancel-circle-stroke' | 'check' | 'check-check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'closet' | 'collections' | 'door-open' | 'edit' | 'electric' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-
|
|
113
|
+
export type IconName = 'accessibility' | 'add-note' | 'air-conditioner' | 'alert-triangle' | 'archive' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'balcony-window' | 'bath' | 'bed-double' | 'bell' | 'building' | 'calendar' | 'cancel' | 'cancel-circle-solid' | 'cancel-circle-stroke' | 'check' | 'check-check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'closet' | 'collections' | 'door-open' | 'edit' | 'electric' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-android' | 'face-ios-bold' | 'face-ios-light' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'garden' | 'gas-heating' | 'heating' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'image' | 'image-off' | 'info' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lift' | 'lock' | 'logout' | 'magic-wand' | 'mail' | 'map-pin' | 'more-horizontal' | 'mortgage' | 'note' | 'notes' | 'outside' | 'parking' | 'patio' | 'payments' | 'pencil-line' | 'pet' | 'phone-linear' | 'pin-map-solid' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'restaurant' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'swimming-pool' | 'terrace' | 'thermometer-snowflake' | 'time' | 'touch-android' | 'touch-ios' | 'trash2' | 'user' | 'whatsapp';
|
|
111
114
|
|
|
112
115
|
/**
|
|
113
116
|
* Props for the unified Icon component
|
|
@@ -205,8 +208,12 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
205
208
|
return import('./EyeHidden').then(m => m.default);
|
|
206
209
|
case 'eye-visible':
|
|
207
210
|
return import('./EyeVisible').then(m => m.default);
|
|
208
|
-
case 'face-
|
|
209
|
-
return import('./
|
|
211
|
+
case 'face-android':
|
|
212
|
+
return import('./FaceAndroid').then(m => m.default);
|
|
213
|
+
case 'face-ios-bold':
|
|
214
|
+
return import('./FaceIosBold').then(m => m.default);
|
|
215
|
+
case 'face-ios-light':
|
|
216
|
+
return import('./FaceIosLight').then(m => m.default);
|
|
210
217
|
case 'file-check':
|
|
211
218
|
return import('./FileCheck').then(m => m.default);
|
|
212
219
|
case 'file-input':
|
|
@@ -223,8 +230,6 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
223
230
|
return import('./FileText').then(m => m.default);
|
|
224
231
|
case 'filter':
|
|
225
232
|
return import('./Filter').then(m => m.default);
|
|
226
|
-
case 'fingerprint-android':
|
|
227
|
-
return import('./FingerprintAndroid').then(m => m.default);
|
|
228
233
|
case 'garden':
|
|
229
234
|
return import('./Garden').then(m => m.default);
|
|
230
235
|
case 'gas-heating':
|
|
@@ -317,6 +322,10 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
317
322
|
return import('./ThermometerSnowflake').then(m => m.default);
|
|
318
323
|
case 'time':
|
|
319
324
|
return import('./Time').then(m => m.default);
|
|
325
|
+
case 'touch-android':
|
|
326
|
+
return import('./TouchAndroid').then(m => m.default);
|
|
327
|
+
case 'touch-ios':
|
|
328
|
+
return import('./TouchIos').then(m => m.default);
|
|
320
329
|
case 'trash2':
|
|
321
330
|
return import('./Trash2').then(m => m.default);
|
|
322
331
|
case 'user':
|
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import type { ReactIconProps } from '../shared/types';
|
|
3
3
|
import { resolveSize } from '../shared/types';
|
|
4
4
|
|
|
5
|
-
const
|
|
5
|
+
const SvgTouchAndroid = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
6
|
const sizeValue = resolveSize(size);
|
|
7
7
|
|
|
8
8
|
return (
|
|
@@ -21,4 +21,4 @@ const SvgFingerprintAndroid = ({ size = 16, ...props }: ReactIconProps) => {
|
|
|
21
21
|
);
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
-
export default
|
|
24
|
+
export default SvgTouchAndroid;
|
|
@@ -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 SvgTouchIos = ({ 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="M15.126 16.078c0.245 0.036 0.327 0.227 0.327 0.445 -0.172 1.399 -0.499 2.734 -0.998 4.024 -0.408 1.045 -0.907 2.044 -1.534 2.979 -0.063 0.1 -0.127 0.209 -0.209 0.3 -0.163 0.191 -0.372 0.227 -0.563 0.1 -0.209 -0.136 -0.172 -0.336 -0.063 -0.527 0.19 -0.327 0.408 -0.636 0.599 -0.963 1.025 -1.78 1.688 -3.679 1.951 -5.722 0.009 -0.109 0.036 -0.209 0.063 -0.309 0.054 -0.218 0.191 -0.354 0.426 -0.327M11.751 10.21c0.989 -0.182 1.896 0.527 2.105 1.653 0.064 0.345 0.127 0.681 0.154 1.026 0.045 0.581 0.136 1.172 0.1 1.762 -0.045 3.306 -1.034 6.294 -3.012 8.956 -0.163 0.218 -0.345 0.49 -0.662 0.263 -0.299 -0.218 -0.154 -0.472 0.018 -0.708 1.497 -2.016 2.432 -4.269 2.758 -6.767 0.2 -1.535 0.136 -3.043 -0.163 -4.55 -0.127 -0.645 -0.69 -0.981 -1.325 -0.845 -0.535 0.118 -0.871 0.654 -0.753 1.262 0.281 1.49 0.318 2.97 0.046 4.46 -0.054 0.3 -0.054 0.736 -0.499 0.672 -0.454 -0.063 -0.318 -0.463 -0.263 -0.772 0.236 -1.371 0.245 -2.734 -0.027 -4.096 -0.236 -1.19 0.381 -2.107 1.524 -2.316m2.059 -2.171c0.118 -0.2 0.299 -0.245 0.508 -0.145 0.508 0.254 0.925 0.609 1.297 1.044 0.735 0.863 1.052 1.889 1.198 2.988 0.109 0.89 0.227 1.771 0.2 2.407 -0.009 3.388 -0.771 6.303 -2.295 9.028 -0.027 0.054 -0.054 0.109 -0.091 0.154 -0.145 0.236 -0.336 0.382 -0.599 0.218 -0.245 -0.145 -0.2 -0.381 -0.073 -0.599 0.309 -0.536 0.581 -1.09 0.835 -1.662 1.007 -2.261 1.47 -4.632 1.452 -7.103 -0.009 -1.099 -0.127 -2.207 -0.381 -3.279 -0.209 -0.917 -0.699 -1.662 -1.452 -2.234 -0.154 -0.118 -0.326 -0.227 -0.472 -0.345 -0.154 -0.127 -0.245 -0.281 -0.127 -0.472m-1.86 3.624c0.263 -0.045 0.39 0.118 0.436 0.354 0.181 0.881 0.281 1.771 0.272 2.661 -0.064 3.224 -1.089 6.094 -3.158 8.592 -0.045 0.055 -0.091 0.118 -0.145 0.173 -0.172 0.191 -0.381 0.282 -0.59 0.1 -0.2 -0.164 -0.154 -0.382 -0.009 -0.572 0.245 -0.327 0.508 -0.636 0.744 -0.972C11.034 19.865 11.796 17.467 11.896 14.843c0.027 -0.817 -0.082 -1.626 -0.209 -2.434 -0.018 -0.091 -0.036 -0.182 -0.045 -0.272 -0.018 -0.236 0.045 -0.436 0.309 -0.472M17.032 19.52c0.064 -0.245 0.191 -0.418 0.481 -0.364 0.209 0.045 0.291 0.2 0.291 0.409 -0.027 0.109 -0.045 0.227 -0.082 0.345 -0.299 1.017 -0.653 2.007 -1.125 2.961 -0.118 0.245 -0.281 0.472 -0.59 0.327 -0.29 -0.136 -0.218 -0.399 -0.109 -0.627 0.454 -0.99 0.844 -2.007 1.134 -3.052m-7.422 -0.7c0.091 -0.218 0.227 -0.409 0.508 -0.327 0.209 0.064 0.272 0.227 0.245 0.509 -0.091 0.209 -0.209 0.481 -0.336 0.754 -0.544 1.153 -1.243 2.207 -2.132 3.124 -0.191 0.191 -0.399 0.372 -0.653 0.127 -0.236 -0.227 -0.091 -0.445 0.082 -0.627 0.98 -1.044 1.733 -2.234 2.287 -3.56M9.255 12.908c0.29 -0.027 0.381 0.191 0.417 0.436 0.027 0.182 0.064 0.354 0.073 0.536 0 0.254 -0.009 0.509 -0.009 0.772 -0.036 2.861 -1.062 5.322 -3.031 7.402l-0.19 0.191c-0.19 0.181 -0.417 0.29 -0.635 0.073 -0.236 -0.227 -0.1 -0.445 0.091 -0.627A10.02 10.02 0 0 0 7.64 19.557c1.016 -1.762 1.479 -3.651 1.297 -5.695 -0.009 -0.154 -0.018 -0.3 -0.018 -0.454 -0.009 -0.245 0.054 -0.482 0.336 -0.5M17.685 7.44c0.227 -0.163 0.399 -0.036 0.544 0.145 0.671 0.89 1.071 1.898 1.288 2.97 0.263 1.353 0.426 2.698 0.399 3.815 0.009 2.607 -0.39 4.886 -1.17 7.103 -0.054 0.145 -0.109 0.282 -0.163 0.427 -0.091 0.236 -0.245 0.409 -0.517 0.309 -0.263 -0.1 -0.29 -0.318 -0.2 -0.563 0.118 -0.345 0.236 -0.681 0.345 -1.036 0.671 -2.089 1.007 -4.242 0.926 -6.44 -0.073 -1.853 -0.173 -3.724 -1.08 -5.422 -0.136 -0.254 -0.299 -0.491 -0.445 -0.745 -0.118 -0.209 -0.136 -0.418 0.073 -0.563m-5.862 -0.181c0.181 0 0.245 -0.009 0.299 0 0.263 0.027 0.563 0.073 0.572 0.4 0.009 0.363 -0.299 0.409 -0.59 0.409 -1.524 -0.027 -2.686 0.609 -3.493 1.889 -0.535 0.854 -0.708 1.789 -0.517 2.788 0.608 3.279 -0.281 6.104 -2.622 8.465 -0.082 0.082 -0.173 0.173 -0.272 0.245 -0.2 0.164 -0.417 0.218 -0.599 0 -0.172 -0.2 -0.082 -0.399 0.082 -0.563 0.49 -0.472 0.962 -0.963 1.343 -1.526 1.261 -1.88 1.787 -3.942 1.334 -6.167 -0.608 -3.052 1.443 -5.813 4.464 -5.94M5.545 17.222c0.1 -0.227 0.227 -0.4 0.508 -0.345 0.181 0.054 0.272 0.191 0.281 0.427a5.2 5.2 0 0 1 -0.118 0.336c-0.463 1.09 -1.161 1.998 -2.042 2.779 -0.209 0.191 -0.454 0.3 -0.671 0.036 -0.209 -0.245 -0.036 -0.463 0.154 -0.618 0.844 -0.717 1.461 -1.598 1.887 -2.616m15.334 -4.314c0.372 -0.045 0.445 0.254 0.454 0.545 0.027 0.427 0.018 0.854 0.018 1.281 0.027 1.753 -0.209 3.47 -0.617 5.168 -0.018 0.055 -0.027 0.118 -0.045 0.173 -0.081 0.263 -0.145 0.59 -0.517 0.49 -0.354 -0.091 -0.318 -0.391 -0.245 -0.672 0.191 -0.736 0.345 -1.471 0.436 -2.225 0.181 -1.381 0.317 -2.761 0.181 -4.16 -0.027 -0.282 0.009 -0.554 0.336 -0.6M7.187 6.078c0.172 -0.109 0.345 -0.109 0.49 0.045 0.154 0.154 0.127 0.336 0 0.49 -0.118 0.136 -0.254 0.264 -0.381 0.391 -1.806 1.78 -2.486 3.914 -2.033 6.412 0.381 2.098 -0.19 3.924 -1.597 5.495 -0.181 0.2 -0.399 0.372 -0.617 0.536 -0.163 0.118 -0.345 0.127 -0.49 -0.036 -0.154 -0.182 -0.118 -0.363 0.036 -0.527 0.136 -0.145 0.281 -0.272 0.417 -0.418 1.043 -1.072 1.561 -2.352 1.606 -4.005a105.2 105.2 0 0 1 -0.172 -1.226c-0.381 -2.752 0.463 -5.068 2.495 -6.957 0.073 -0.073 0.163 -0.136 0.245 -0.2M3.258 12.009c0.209 -0.009 0.354 0.118 0.381 0.318 0.079 0.799 0.309 1.452 0.309 2.207 -0.054 1.489 -0.572 2.67 -1.606 3.624 -0.172 0.154 -0.363 0.245 -0.563 0.063 -0.209 -0.191 -0.181 -0.427 0.009 -0.599 1.37 -1.244 1.549 -3.088 1.202 -4.311 -0.084 -0.298 -0.141 -0.886 -0.081 -1.032 0.056 -0.136 0.14 -0.27 0.349 -0.27m8.711 -6.204c2.922 -0.018 5.544 2.135 6.115 5.032 0.245 1.244 0.399 2.507 0.372 3.86 0.036 0.845 -0.081 1.762 -0.19 2.68a1.24 1.24 0 0 1 -0.054 0.263c-0.054 0.236 -0.173 0.445 -0.454 0.4 -0.281 -0.054 -0.345 -0.281 -0.299 -0.527 0.091 -0.6 0.136 -1.199 0.191 -1.798 0.154 -1.735 0 -3.451 -0.427 -5.132C16.533 7.885 13.802 6.178 11.089 6.668c-2.804 0.509 -4.754 3.006 -4.5 5.804 0.073 0.799 0.299 1.581 0.245 2.389 -0.009 0.163 -0.009 0.336 -0.045 0.5 -0.045 0.218 -0.154 0.418 -0.417 0.39 -0.281 -0.027 -0.381 -0.245 -0.354 -0.49 0.036 -0.391 0.064 -0.781 0.009 -1.172 -0.136 -1.044 -0.336 -2.089 -0.136 -3.151 0.553 -2.934 3.112 -5.114 6.079 -5.132M14.754 2.236c0.091 -0.272 0.317 -0.3 0.562 -0.227 0.626 0.191 1.225 0.445 1.788 0.772 3.166 1.825 4.927 4.596 5.435 8.192 0.172 1.217 0.309 2.434 0.272 3.733 0.045 0.799 -0.036 1.653 -0.127 2.507 -0.027 0.282 -0.036 0.69 -0.472 0.627 -0.417 -0.064 -0.336 -0.436 -0.299 -0.736 0.299 -2.507 0.191 -4.996 -0.426 -7.43 -0.844 -3.37 -2.967 -5.64 -6.206 -6.885 -0.073 -0.027 -0.145 -0.045 -0.218 -0.073 -0.218 -0.091 -0.39 -0.227 -0.308 -0.481m-4.192 -0.672c0.88 -0.136 1.778 -0.173 2.667 -0.027 0.254 0.045 0.508 0.109 0.49 0.427 -0.027 0.354 -0.299 0.345 -0.572 0.336 -0.336 -0.027 -0.671 -0.018 -1.007 -0.018 -4.945 -0.173 -9.409 3.588 -9.908 8.965 -0.091 0.99 0.045 1.962 0.2 2.934 0.154 0.936 -0.127 1.762 -0.708 2.498 -0.163 0.209 -0.372 0.418 -0.644 0.191 -0.281 -0.227 -0.118 -0.463 0.055 -0.672 0.553 -0.672 0.626 -1.444 0.481 -2.271 -1.007 -6.031 2.885 -11.426 8.947 -12.362M1.439 6.432c0.098 -0.08 0.219 -0.105 0.349 -0.036 0.191 0.091 0.263 0.254 0.191 0.454 -0.091 0.254 -0.209 0.499 -0.318 0.754 -0.916 2.162 -1.143 4.396 -0.662 6.703 0.064 0.3 0.29 0.718 -0.2 0.836 -0.49 0.118 -0.49 -0.354 -0.554 -0.654C0.095 13.731 -0.017 12.967 0.003 12.281a12.114 12.114 0 0 1 0.022 -1.029c0.085 -1.569 0.483 -2.998 1.128 -4.375 0.046 -0.108 0.099 -0.209 0.164 -0.304l0.008 -0.015c0.027 -0.053 0.067 -0.096 0.114 -0.126m9.613 2.452c1.914 -0.563 3.756 0.563 4.192 2.543 0.19 0.863 0.263 1.753 0.309 2.643v0.409c-0.009 0.245 -0.091 0.472 -0.381 0.472s-0.363 -0.218 -0.372 -0.472c-0.045 -0.917 -0.118 -1.835 -0.281 -2.743 -0.336 -1.835 -2.16 -2.77 -3.738 -1.908 -0.526 0.291 -0.925 0.727 -1.134 1.308 -0.027 0.073 -0.055 0.145 -0.073 0.218 -0.082 0.254 -0.181 0.527 -0.517 0.427 -0.363 -0.109 -0.29 -0.418 -0.209 -0.681 0.363 -1.108 1.08 -1.889 2.205 -2.216m7.34 -6.595a0.333 0.333 0 0 1 0.44 -0.099c0.119 0.051 0.236 0.146 0.341 0.227 2.106 1.594 3.498 3.565 4.231 5.882a11.88 11.88 0 0 1 0.57 2.96q0.015 0.178 0.025 0.358v0.545c0 0.236 -0.063 0.436 -0.345 0.445 -0.281 0.009 -0.39 -0.191 -0.408 -0.445 -0.018 -0.454 -0.027 -0.908 -0.082 -1.353 -0.381 -3.215 -1.878 -5.804 -4.427 -7.784 -0.208 -0.166 -0.537 -0.325 -0.396 -0.623 0.009 -0.04 0.026 -0.078 0.051 -0.114m-7.268 0.655c4.609 -0.454 9.037 2.743 9.863 7.593 0.045 0.236 0.082 0.463 0.109 0.608 0.009 0.327 0.027 0.6 -0.309 0.636 -0.317 0.036 -0.399 -0.218 -0.445 -0.472 -0.209 -1.426 -0.599 -2.788 -1.452 -3.969 -2.114 -2.934 -4.981 -4.087 -8.511 -3.497 -3.212 0.536 -5.825 3.161 -6.533 6.376 -0.063 0.291 -0.054 0.736 -0.517 0.636 -0.49 -0.1 -0.299 -0.518 -0.227 -0.827 0.889 -3.878 4.146 -6.703 8.021 -7.085m0.789 1.399c1.751 0.064 3.257 0.518 4.591 1.489 0.045 0.036 0.1 0.073 0.145 0.109 0.2 0.182 0.481 0.363 0.236 0.672 -0.236 0.309 -0.481 0.1 -0.708 -0.064 -2.105 -1.544 -4.382 -1.798 -6.814 -0.89 -0.054 0.018 -0.109 0.045 -0.172 0.063 -0.218 0.082 -0.436 0.082 -0.545 -0.154 -0.127 -0.263 0.027 -0.436 0.254 -0.545 0.681 -0.318 1.388 -0.5 2.123 -0.6 0.336 -0.036 0.663 -0.054 0.889 -0.082M12.184 0c1.557 0 3.196 0.374 4.766 1.073 0.045 0.018 0.082 0.036 0.127 0.055 0.263 0.109 0.481 0.263 0.354 0.581 -0.136 0.327 -0.408 0.236 -0.653 0.118 -0.792 -0.371 -2.328 -0.83 -3.284 -1.002a11.4 11.4 0 0 0 -1.494 -0.097c-0.935 0 -1.843 0.113 -2.712 0.326 -2.195 0.575 -4.338 1.88 -6.121 4.026 -0.182 0.226 -0.348 0.61 -0.696 0.395a0.334 0.334 0 0 1 -0.2 -0.195c-0.13 -0.244 0.141 -0.481 0.297 -0.682C4.628 2.027 7.305 0.528 10.571 0.092 11.043 0.029 11.694 0 12.184 0"
|
|
18
|
+
fill="currentColor"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default SvgTouchIos;
|
package/src/react/index.ts
CHANGED
|
@@ -38,7 +38,9 @@ export { default as ExploreFilled } from './ExploreFilled';
|
|
|
38
38
|
export { default as ExploreLinear } from './ExploreLinear';
|
|
39
39
|
export { default as EyeHidden } from './EyeHidden';
|
|
40
40
|
export { default as EyeVisible } from './EyeVisible';
|
|
41
|
-
export { default as
|
|
41
|
+
export { default as FaceAndroid } from './FaceAndroid';
|
|
42
|
+
export { default as FaceIosBold } from './FaceIosBold';
|
|
43
|
+
export { default as FaceIosLight } from './FaceIosLight';
|
|
42
44
|
export { default as FileCheck } from './FileCheck';
|
|
43
45
|
export { default as FileInput } from './FileInput';
|
|
44
46
|
export { default as FileKey } from './FileKey';
|
|
@@ -47,7 +49,6 @@ export { default as FileSignature } from './FileSignature';
|
|
|
47
49
|
export { default as FileSpreadsheet } from './FileSpreadsheet';
|
|
48
50
|
export { default as FileText } from './FileText';
|
|
49
51
|
export { default as Filter } from './Filter';
|
|
50
|
-
export { default as FingerprintAndroid } from './FingerprintAndroid';
|
|
51
52
|
export { default as Garden } from './Garden';
|
|
52
53
|
export { default as GasHeating } from './GasHeating';
|
|
53
54
|
export { default as Heating } from './Heating';
|
|
@@ -94,6 +95,8 @@ export { default as SwimmingPool } from './SwimmingPool';
|
|
|
94
95
|
export { default as Terrace } from './Terrace';
|
|
95
96
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
96
97
|
export { default as Time } from './Time';
|
|
98
|
+
export { default as TouchAndroid } from './TouchAndroid';
|
|
99
|
+
export { default as TouchIos } from './TouchIos';
|
|
97
100
|
export { default as Trash2 } from './Trash2';
|
|
98
101
|
export { default as User } from './User';
|
|
99
102
|
export { default as Whatsapp } from './Whatsapp';
|
package/src/react/index.tsx
CHANGED
|
@@ -37,7 +37,9 @@ export { default as ExploreFilled } from './ExploreFilled';
|
|
|
37
37
|
export { default as ExploreLinear } from './ExploreLinear';
|
|
38
38
|
export { default as EyeHidden } from './EyeHidden';
|
|
39
39
|
export { default as EyeVisible } from './EyeVisible';
|
|
40
|
-
export { default as
|
|
40
|
+
export { default as FaceAndroid } from './FaceAndroid';
|
|
41
|
+
export { default as FaceIosBold } from './FaceIosBold';
|
|
42
|
+
export { default as FaceIosLight } from './FaceIosLight';
|
|
41
43
|
export { default as FileCheck } from './FileCheck';
|
|
42
44
|
export { default as FileInput } from './FileInput';
|
|
43
45
|
export { default as FileKey } from './FileKey';
|
|
@@ -46,7 +48,6 @@ export { default as FileSignature } from './FileSignature';
|
|
|
46
48
|
export { default as FileSpreadsheet } from './FileSpreadsheet';
|
|
47
49
|
export { default as FileText } from './FileText';
|
|
48
50
|
export { default as Filter } from './Filter';
|
|
49
|
-
export { default as FingerprintAndroid } from './FingerprintAndroid';
|
|
50
51
|
export { default as Garden } from './Garden';
|
|
51
52
|
export { default as GasHeating } from './GasHeating';
|
|
52
53
|
export { default as Heating } from './Heating';
|
|
@@ -93,6 +94,8 @@ export { default as SwimmingPool } from './SwimmingPool';
|
|
|
93
94
|
export { default as Terrace } from './Terrace';
|
|
94
95
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
95
96
|
export { default as Time } from './Time';
|
|
97
|
+
export { default as TouchAndroid } from './TouchAndroid';
|
|
98
|
+
export { default as TouchIos } from './TouchIos';
|
|
96
99
|
export { default as Trash2 } from './Trash2';
|
|
97
100
|
export { default as User } from './User';
|
|
98
101
|
export { default as Whatsapp } from './Whatsapp';
|