huspy-icons 0.3.7 → 0.3.8
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 +107 -95
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +95 -91
- package/dist/fonts/HuspyIcons.ts +103 -91
- 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 +95 -91
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +10 -2
- package/dist/react/index.d.ts +10 -2
- package/dist/react/index.js +721 -472
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +649 -400
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +96 -92
- package/src/react/CancelCircleStroke.tsx +38 -0
- package/src/react/CheckCheck.tsx +32 -0
- package/src/react/Icon.tsx +13 -1
- package/src/react/ImageOff.tsx +56 -0
- package/src/react/Time.tsx +32 -0
- package/src/react/index.ts +4 -0
- package/src/react/index.tsx +4 -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' | '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' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'fingerprint-android' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-id' | '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' | 'cancel' | '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';
|
|
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' | 'fingerprint-android' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-id' | '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,97 +14,101 @@ 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
|
-
"search
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"properties-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"leads-
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"file-
|
|
66
|
-
"file-
|
|
67
|
-
"file-
|
|
68
|
-
"file-
|
|
69
|
-
"file-
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"chevron-
|
|
83
|
-
"chevron-
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"arrow-
|
|
99
|
-
"arrow-
|
|
100
|
-
"arrow-
|
|
101
|
-
"arrow-down
|
|
102
|
-
"arrow-
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
17
|
+
"time": 61700,
|
|
18
|
+
"thermometer-snowflake": 61701,
|
|
19
|
+
"terrace": 61702,
|
|
20
|
+
"swimming-pool": 61703,
|
|
21
|
+
"size-3d": 61704,
|
|
22
|
+
"share": 61705,
|
|
23
|
+
"search": 61706,
|
|
24
|
+
"search-x": 61707,
|
|
25
|
+
"sale": 61708,
|
|
26
|
+
"restaurant": 61709,
|
|
27
|
+
"rent": 61710,
|
|
28
|
+
"properties-linear": 61711,
|
|
29
|
+
"properties-filled": 61712,
|
|
30
|
+
"promotion": 61713,
|
|
31
|
+
"plus": 61714,
|
|
32
|
+
"pin_map_solid": 61715,
|
|
33
|
+
"phone-linear": 61716,
|
|
34
|
+
"pet": 61717,
|
|
35
|
+
"pencil-line": 61718,
|
|
36
|
+
"payments": 61719,
|
|
37
|
+
"patio": 61720,
|
|
38
|
+
"parking": 61721,
|
|
39
|
+
"outside": 61722,
|
|
40
|
+
"notes": 61723,
|
|
41
|
+
"note": 61724,
|
|
42
|
+
"mortgage": 61725,
|
|
43
|
+
"more-horizontal": 61726,
|
|
44
|
+
"map-pin": 61727,
|
|
45
|
+
"mail": 61728,
|
|
46
|
+
"magic-wand": 61729,
|
|
47
|
+
"logout": 61730,
|
|
48
|
+
"lock": 61731,
|
|
49
|
+
"lift": 61732,
|
|
50
|
+
"leads-linear": 61733,
|
|
51
|
+
"leads-filled": 61734,
|
|
52
|
+
"keys_01": 61735,
|
|
53
|
+
"info": 61736,
|
|
54
|
+
"image": 61737,
|
|
55
|
+
"image-off": 61738,
|
|
56
|
+
"icon-slot": 61739,
|
|
57
|
+
"home-linear": 61740,
|
|
58
|
+
"home-filled": 61741,
|
|
59
|
+
"help-circle": 61742,
|
|
60
|
+
"heating": 61743,
|
|
61
|
+
"gas-heating": 61744,
|
|
62
|
+
"garden": 61745,
|
|
63
|
+
"fingerprint-android": 61746,
|
|
64
|
+
"filter": 61747,
|
|
65
|
+
"file-text": 61748,
|
|
66
|
+
"file-spreadsheet": 61749,
|
|
67
|
+
"file-signature": 61750,
|
|
68
|
+
"file-lock": 61751,
|
|
69
|
+
"file-key": 61752,
|
|
70
|
+
"file-input": 61753,
|
|
71
|
+
"file-check": 61754,
|
|
72
|
+
"face-id": 61755,
|
|
73
|
+
"eye-visible": 61756,
|
|
74
|
+
"eye-hidden": 61757,
|
|
75
|
+
"explore-linear": 61758,
|
|
76
|
+
"explore-filled": 61759,
|
|
77
|
+
"electric": 61760,
|
|
78
|
+
"edit": 61761,
|
|
79
|
+
"door-open": 61762,
|
|
80
|
+
"collections": 61763,
|
|
81
|
+
"closet": 61764,
|
|
82
|
+
"chevron-up": 61765,
|
|
83
|
+
"chevron-right": 61766,
|
|
84
|
+
"chevron-left": 61767,
|
|
85
|
+
"chevron-down": 61768,
|
|
86
|
+
"check": 61769,
|
|
87
|
+
"check-circle-2": 61770,
|
|
88
|
+
"check-check": 61771,
|
|
89
|
+
"cancel": 61772,
|
|
90
|
+
"cancel-circle-stroke": 61773,
|
|
91
|
+
"cancel-circle-solid": 61774,
|
|
92
|
+
"calendar": 61775,
|
|
93
|
+
"building": 61776,
|
|
94
|
+
"bell": 61777,
|
|
95
|
+
"bed-double": 61778,
|
|
96
|
+
"bath": 61779,
|
|
97
|
+
"balcony-window": 61780,
|
|
98
|
+
"arrow-up": 61781,
|
|
99
|
+
"arrow-up-right": 61782,
|
|
100
|
+
"arrow-up-left": 61783,
|
|
101
|
+
"arrow-up-down": 61784,
|
|
102
|
+
"arrow-right": 61785,
|
|
103
|
+
"arrow-left": 61786,
|
|
104
|
+
"arrow-down": 61787,
|
|
105
|
+
"arrow-down-right": 61788,
|
|
106
|
+
"arrow-down-left": 61789,
|
|
107
|
+
"archive": 61790,
|
|
108
|
+
"alert-triangle": 61791,
|
|
109
|
+
"air-conditioner": 61792,
|
|
110
|
+
"add-note": 61793,
|
|
111
|
+
"accessibility": 61794
|
|
108
112
|
};
|
|
109
113
|
|
|
110
114
|
/**
|
|
@@ -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 SvgCancelCircleStroke = ({ 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 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M15.7071 8.29289C16.0976 8.68342 16.0976 9.31658 15.7071 9.70711L9.70711 15.7071C9.31658 16.0976 8.68342 16.0976 8.29289 15.7071C7.90237 15.3166 7.90237 14.6834 8.29289 14.2929L14.2929 8.29289C14.6834 7.90237 15.3166 7.90237 15.7071 8.29289Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M8.29289 8.29289C8.68342 7.90237 9.31658 7.90237 9.70711 8.29289L15.7071 14.2929C16.0976 14.6834 16.0976 15.3166 15.7071 15.7071C15.3166 16.0976 14.6834 16.0976 14.2929 15.7071L8.29289 9.70711C7.90237 9.31658 7.90237 8.68342 8.29289 8.29289Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export default SvgCancelCircleStroke;
|
|
@@ -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 SvgCheckCheck = ({ 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="M18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L7.70711 17.7071C7.31658 18.0976 6.68342 18.0976 6.29289 17.7071L1.29289 12.7071C0.902369 12.3166 0.902369 11.6834 1.29289 11.2929C1.68342 10.9024 2.31658 10.9024 2.70711 11.2929L7 15.5858L17.2929 5.29289C17.6834 4.90237 18.3166 4.90237 18.7071 5.29289Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M22.7071 9.29289C23.0976 9.68342 23.0976 10.3166 22.7071 10.7071L15.2071 18.2071C14.8166 18.5976 14.1834 18.5976 13.7929 18.2071L12.2929 16.7071C11.9024 16.3166 11.9024 15.6834 12.2929 15.2929C12.6834 14.9024 13.3166 14.9024 13.7071 15.2929L14.5 16.0858L21.2929 9.29289C21.6834 8.90237 22.3166 8.90237 22.7071 9.29289Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export default SvgCheckCheck;
|
package/src/react/Icon.tsx
CHANGED
|
@@ -27,7 +27,9 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
27
27
|
// Icon: calendar
|
|
28
28
|
// Icon: cancel
|
|
29
29
|
// Icon: cancel-circle-solid
|
|
30
|
+
// Icon: cancel-circle-stroke
|
|
30
31
|
// Icon: check
|
|
32
|
+
// Icon: check-check
|
|
31
33
|
// Icon: check-circle2
|
|
32
34
|
// Icon: chevron-down
|
|
33
35
|
// Icon: chevron-left
|
|
@@ -60,6 +62,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
60
62
|
// Icon: home-linear
|
|
61
63
|
// Icon: icon-slot
|
|
62
64
|
// Icon: image
|
|
65
|
+
// Icon: image-off
|
|
63
66
|
// Icon: info
|
|
64
67
|
// Icon: keys01
|
|
65
68
|
// Icon: leads-filled
|
|
@@ -96,6 +99,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
96
99
|
// Icon: swimming-pool
|
|
97
100
|
// Icon: terrace
|
|
98
101
|
// Icon: thermometer-snowflake
|
|
102
|
+
// Icon: time
|
|
99
103
|
// Icon: trash2
|
|
100
104
|
// Icon: user
|
|
101
105
|
// Icon: whatsapp
|
|
@@ -103,7 +107,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
103
107
|
/**
|
|
104
108
|
* Available icon names
|
|
105
109
|
*/
|
|
106
|
-
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' | '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-id' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'fingerprint-android' | 'garden' | 'gas-heating' | 'heating' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'image' | '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' | 'trash2' | 'user' | 'whatsapp';
|
|
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-id' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'fingerprint-android' | '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' | 'trash2' | 'user' | 'whatsapp';
|
|
107
111
|
|
|
108
112
|
/**
|
|
109
113
|
* Props for the unified Icon component
|
|
@@ -167,8 +171,12 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
167
171
|
return import('./Cancel').then(m => m.default);
|
|
168
172
|
case 'cancel-circle-solid':
|
|
169
173
|
return import('./CancelCircleSolid').then(m => m.default);
|
|
174
|
+
case 'cancel-circle-stroke':
|
|
175
|
+
return import('./CancelCircleStroke').then(m => m.default);
|
|
170
176
|
case 'check':
|
|
171
177
|
return import('./Check').then(m => m.default);
|
|
178
|
+
case 'check-check':
|
|
179
|
+
return import('./CheckCheck').then(m => m.default);
|
|
172
180
|
case 'check-circle2':
|
|
173
181
|
return import('./CheckCircle2').then(m => m.default);
|
|
174
182
|
case 'chevron-down':
|
|
@@ -233,6 +241,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
233
241
|
return import('./IconSlot').then(m => m.default);
|
|
234
242
|
case 'image':
|
|
235
243
|
return import('./Image').then(m => m.default);
|
|
244
|
+
case 'image-off':
|
|
245
|
+
return import('./ImageOff').then(m => m.default);
|
|
236
246
|
case 'info':
|
|
237
247
|
return import('./Info').then(m => m.default);
|
|
238
248
|
case 'keys01':
|
|
@@ -305,6 +315,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
305
315
|
return import('./Terrace').then(m => m.default);
|
|
306
316
|
case 'thermometer-snowflake':
|
|
307
317
|
return import('./ThermometerSnowflake').then(m => m.default);
|
|
318
|
+
case 'time':
|
|
319
|
+
return import('./Time').then(m => m.default);
|
|
308
320
|
case 'trash2':
|
|
309
321
|
return import('./Trash2').then(m => m.default);
|
|
310
322
|
case 'user':
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgImageOff = ({ 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.29289 1.29289C1.68342 0.902369 2.31658 0.902369 2.70711 1.29289L22.7071 21.2929C23.0976 21.6834 23.0976 22.3166 22.7071 22.7071C22.3166 23.0976 21.6834 23.0976 21.2929 22.7071L1.29289 2.70711C0.902369 2.31658 0.902369 1.68342 1.29289 1.29289Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M8.28711 6.87289C8.67763 7.26342 8.67763 7.89658 8.28711 8.28711C8.19415 8.38007 8.1204 8.49043 8.07009 8.61189C8.01978 8.73335 7.99389 8.86353 7.99389 8.995C7.99389 9.12647 8.01978 9.25665 8.07009 9.37811C8.1204 9.49957 8.19415 9.60993 8.28711 9.70289C8.38007 9.79586 8.49043 9.8696 8.61189 9.91991C8.73335 9.97022 8.86353 9.99611 8.995 9.99611C9.12647 9.99611 9.25665 9.97022 9.37811 9.91991C9.49957 9.8696 9.60993 9.79586 9.70289 9.70289C10.0934 9.31237 10.7266 9.31237 11.1171 9.70289C11.5076 10.0934 11.5076 10.7266 11.1171 11.1171C10.8384 11.3958 10.5076 11.6168 10.1435 11.7677C9.77936 11.9185 9.38911 11.9961 8.995 11.9961C8.60089 11.9961 8.21064 11.9185 7.84652 11.7677C7.48241 11.6168 7.15157 11.3958 6.87289 11.1171C6.59421 10.8384 6.37315 10.5076 6.22233 10.1435C6.07151 9.77936 5.99389 9.38911 5.99389 8.995C5.99389 8.60089 6.07151 8.21064 6.22233 7.84652C6.37315 7.48241 6.59421 7.15157 6.87289 6.87289C7.26342 6.48237 7.89658 6.48237 8.28711 6.87289Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M14.2071 12.7929C14.5976 13.1834 14.5976 13.8166 14.2071 14.2071L6.70711 21.7071C6.31658 22.0976 5.68342 22.0976 5.29289 21.7071C4.90237 21.3166 4.90237 20.6834 5.29289 20.2929L12.7929 12.7929C13.1834 12.4024 13.8166 12.4024 14.2071 12.7929Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M17.2929 11.2929C17.6834 10.9024 18.3166 10.9024 18.7071 11.2929L21.7071 14.2929C22.0976 14.6834 22.0976 15.3166 21.7071 15.7071C21.3166 16.0976 20.6834 16.0976 20.2929 15.7071L17.2929 12.7071C16.9024 12.3166 16.9024 11.6834 17.2929 11.2929Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M4.30068 2.88648C4.68922 3.27898 4.68601 3.91214 4.29352 4.30068C4.20077 4.39249 4.1271 4.50172 4.07673 4.62211C4.02647 4.74222 4.00039 4.87106 4 5.00126V19C4 19.2652 4.10536 19.5196 4.29289 19.7071C4.48043 19.8946 4.73478 20 5 20H19C19.2794 20 19.522 19.8897 19.6913 19.7146C20.0754 19.3177 20.7084 19.3073 21.1054 19.6913C21.5023 20.0754 21.5127 20.7084 21.1287 21.1054C20.582 21.6703 19.8206 22 19 22H5C4.20435 22 3.44129 21.6839 2.87868 21.1213C2.31607 20.5587 2 19.7957 2 19V4.99786C2.00084 4.60374 2.0796 4.21367 2.23173 3.85009C2.38387 3.48651 2.60639 3.15659 2.88648 2.87932C3.27898 2.49078 3.91214 2.49399 4.30068 2.88648Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M8 3C8 2.44772 8.44772 2 9 2H19C19.7957 2 20.5587 2.31607 21.1213 2.87868C21.6839 3.44129 22 4.20435 22 5V15C22 15.5523 21.5523 16 21 16C20.4477 16 20 15.5523 20 15V5C20 4.73478 19.8946 4.48043 19.7071 4.29289C19.5196 4.10536 19.2652 4 19 4H9C8.44772 4 8 3.55228 8 3Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
</svg>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export default SvgImageOff;
|
|
@@ -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 SvgTime = ({ 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 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M12 5C12.5523 5 13 5.44772 13 6V11.382L16.4472 13.1056C16.9412 13.3526 17.1414 13.9532 16.8944 14.4472C16.6474 14.9412 16.0468 15.1414 15.5528 14.8944L11.5528 12.8944C11.214 12.725 11 12.3788 11 12V6C11 5.44772 11.4477 5 12 5Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export default SvgTime;
|
package/src/react/index.ts
CHANGED
|
@@ -21,7 +21,9 @@ export { default as Building } from './Building';
|
|
|
21
21
|
export { default as Calendar } from './Calendar';
|
|
22
22
|
export { default as Cancel } from './Cancel';
|
|
23
23
|
export { default as CancelCircleSolid } from './CancelCircleSolid';
|
|
24
|
+
export { default as CancelCircleStroke } from './CancelCircleStroke';
|
|
24
25
|
export { default as Check } from './Check';
|
|
26
|
+
export { default as CheckCheck } from './CheckCheck';
|
|
25
27
|
export { default as CheckCircle2 } from './CheckCircle2';
|
|
26
28
|
export { default as ChevronDown } from './ChevronDown';
|
|
27
29
|
export { default as ChevronLeft } from './ChevronLeft';
|
|
@@ -54,6 +56,7 @@ export { default as HomeFilled } from './HomeFilled';
|
|
|
54
56
|
export { default as HomeLinear } from './HomeLinear';
|
|
55
57
|
export { default as IconSlot } from './IconSlot';
|
|
56
58
|
export { default as Image } from './Image';
|
|
59
|
+
export { default as ImageOff } from './ImageOff';
|
|
57
60
|
export { default as Info } from './Info';
|
|
58
61
|
export { default as Keys01 } from './Keys01';
|
|
59
62
|
export { default as LeadsFilled } from './LeadsFilled';
|
|
@@ -90,6 +93,7 @@ export { default as Size3D } from './Size3D';
|
|
|
90
93
|
export { default as SwimmingPool } from './SwimmingPool';
|
|
91
94
|
export { default as Terrace } from './Terrace';
|
|
92
95
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
96
|
+
export { default as Time } from './Time';
|
|
93
97
|
export { default as Trash2 } from './Trash2';
|
|
94
98
|
export { default as User } from './User';
|
|
95
99
|
export { default as Whatsapp } from './Whatsapp';
|
package/src/react/index.tsx
CHANGED
|
@@ -19,7 +19,9 @@ export { default as Bell } from './Bell';
|
|
|
19
19
|
export { default as Building } from './Building';
|
|
20
20
|
export { default as Calendar } from './Calendar';
|
|
21
21
|
export { default as CancelCircleSolid } from './CancelCircleSolid';
|
|
22
|
+
export { default as CancelCircleStroke } from './CancelCircleStroke';
|
|
22
23
|
export { default as Cancel } from './Cancel';
|
|
24
|
+
export { default as CheckCheck } from './CheckCheck';
|
|
23
25
|
export { default as CheckCircle2 } from './CheckCircle2';
|
|
24
26
|
export { default as Check } from './Check';
|
|
25
27
|
export { default as ChevronDown } from './ChevronDown';
|
|
@@ -52,6 +54,7 @@ export { default as HelpCircle } from './HelpCircle';
|
|
|
52
54
|
export { default as HomeFilled } from './HomeFilled';
|
|
53
55
|
export { default as HomeLinear } from './HomeLinear';
|
|
54
56
|
export { default as IconSlot } from './IconSlot';
|
|
57
|
+
export { default as ImageOff } from './ImageOff';
|
|
55
58
|
export { default as Image } from './Image';
|
|
56
59
|
export { default as Info } from './Info';
|
|
57
60
|
export { default as Keys01 } from './Keys01';
|
|
@@ -89,6 +92,7 @@ export { default as Size3D } from './Size3D';
|
|
|
89
92
|
export { default as SwimmingPool } from './SwimmingPool';
|
|
90
93
|
export { default as Terrace } from './Terrace';
|
|
91
94
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
95
|
+
export { default as Time } from './Time';
|
|
92
96
|
export { default as Trash2 } from './Trash2';
|
|
93
97
|
export { default as User } from './User';
|
|
94
98
|
export { default as Whatsapp } from './Whatsapp';
|