@goodhood-web/ui 2.1.0-development.28 → 2.1.0-development.29
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/index.js +1 -1
- package/index.mjs +2 -2
- package/lib/Base/Icon/icons/coloured/32x32/index.d.ts +18 -0
- package/lib/Base/Icon/icons/coloured/index.d.ts +18 -0
- package/lib/Base/Icon/icons/filled/16x16/index.d.ts +3 -0
- package/lib/Base/Icon/icons/filled/24x24/index.d.ts +6 -0
- package/lib/Base/Icon/icons/filled/32x32/index.d.ts +9 -0
- package/lib/Base/Icon/icons/filled/index.d.ts +18 -0
- package/lib/Base/Icon/icons/index.d.ts +528 -0
- package/lib/Base/Icon/icons/outline/16x16/index.d.ts +18 -0
- package/lib/Base/Icon/icons/outline/24x24/index.d.ts +150 -0
- package/lib/Base/Icon/icons/outline/32x32/index.d.ts +324 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +492 -0
- package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +78 -0
- package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +84 -0
- package/lib/Base/SocialIcon/icons/index.d.ts +162 -0
- package/package.json +1 -1
|
@@ -1,21 +1,39 @@
|
|
|
1
1
|
declare const IconsMap: {
|
|
2
2
|
chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
3
|
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
desc?: string;
|
|
6
|
+
descId?: string;
|
|
4
7
|
}>;
|
|
5
8
|
chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
9
|
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
7
13
|
}>;
|
|
8
14
|
chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
15
|
title?: string;
|
|
16
|
+
titleId?: string;
|
|
17
|
+
desc?: string;
|
|
18
|
+
descId?: string;
|
|
10
19
|
}>;
|
|
11
20
|
chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
21
|
title?: string;
|
|
22
|
+
titleId?: string;
|
|
23
|
+
desc?: string;
|
|
24
|
+
descId?: string;
|
|
13
25
|
}>;
|
|
14
26
|
heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
27
|
title?: string;
|
|
28
|
+
titleId?: string;
|
|
29
|
+
desc?: string;
|
|
30
|
+
descId?: string;
|
|
16
31
|
}>;
|
|
17
32
|
privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
33
|
title?: string;
|
|
34
|
+
titleId?: string;
|
|
35
|
+
desc?: string;
|
|
36
|
+
descId?: string;
|
|
19
37
|
}>;
|
|
20
38
|
};
|
|
21
39
|
export default IconsMap;
|
|
@@ -1,153 +1,303 @@
|
|
|
1
1
|
declare const IconsMap: {
|
|
2
2
|
readonly arrow_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
3
|
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
desc?: string;
|
|
6
|
+
descId?: string;
|
|
4
7
|
}>;
|
|
5
8
|
readonly arrow_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
9
|
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
7
13
|
}>;
|
|
8
14
|
readonly bookmark_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
15
|
title?: string;
|
|
16
|
+
titleId?: string;
|
|
17
|
+
desc?: string;
|
|
18
|
+
descId?: string;
|
|
10
19
|
}>;
|
|
11
20
|
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
21
|
title?: string;
|
|
22
|
+
titleId?: string;
|
|
23
|
+
desc?: string;
|
|
24
|
+
descId?: string;
|
|
13
25
|
}>;
|
|
14
26
|
readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
27
|
title?: string;
|
|
28
|
+
titleId?: string;
|
|
29
|
+
desc?: string;
|
|
30
|
+
descId?: string;
|
|
16
31
|
}>;
|
|
17
32
|
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
33
|
title?: string;
|
|
34
|
+
titleId?: string;
|
|
35
|
+
desc?: string;
|
|
36
|
+
descId?: string;
|
|
19
37
|
}>;
|
|
20
38
|
readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
39
|
title?: string;
|
|
40
|
+
titleId?: string;
|
|
41
|
+
desc?: string;
|
|
42
|
+
descId?: string;
|
|
22
43
|
}>;
|
|
23
44
|
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
24
45
|
title?: string;
|
|
46
|
+
titleId?: string;
|
|
47
|
+
desc?: string;
|
|
48
|
+
descId?: string;
|
|
25
49
|
}>;
|
|
26
50
|
readonly chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
51
|
title?: string;
|
|
52
|
+
titleId?: string;
|
|
53
|
+
desc?: string;
|
|
54
|
+
descId?: string;
|
|
28
55
|
}>;
|
|
29
56
|
readonly chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
30
57
|
title?: string;
|
|
58
|
+
titleId?: string;
|
|
59
|
+
desc?: string;
|
|
60
|
+
descId?: string;
|
|
31
61
|
}>;
|
|
32
62
|
readonly chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
63
|
title?: string;
|
|
64
|
+
titleId?: string;
|
|
65
|
+
desc?: string;
|
|
66
|
+
descId?: string;
|
|
34
67
|
}>;
|
|
35
68
|
readonly chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
36
69
|
title?: string;
|
|
70
|
+
titleId?: string;
|
|
71
|
+
desc?: string;
|
|
72
|
+
descId?: string;
|
|
37
73
|
}>;
|
|
38
74
|
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
39
75
|
title?: string;
|
|
76
|
+
titleId?: string;
|
|
77
|
+
desc?: string;
|
|
78
|
+
descId?: string;
|
|
40
79
|
}>;
|
|
41
80
|
readonly copy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
42
81
|
title?: string;
|
|
82
|
+
titleId?: string;
|
|
83
|
+
desc?: string;
|
|
84
|
+
descId?: string;
|
|
43
85
|
}>;
|
|
44
86
|
readonly cross: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
45
87
|
title?: string;
|
|
88
|
+
titleId?: string;
|
|
89
|
+
desc?: string;
|
|
90
|
+
descId?: string;
|
|
46
91
|
}>;
|
|
47
92
|
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
48
93
|
title?: string;
|
|
94
|
+
titleId?: string;
|
|
95
|
+
desc?: string;
|
|
96
|
+
descId?: string;
|
|
49
97
|
}>;
|
|
50
98
|
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
51
99
|
title?: string;
|
|
100
|
+
titleId?: string;
|
|
101
|
+
desc?: string;
|
|
102
|
+
descId?: string;
|
|
52
103
|
}>;
|
|
53
104
|
readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
54
105
|
title?: string;
|
|
106
|
+
titleId?: string;
|
|
107
|
+
desc?: string;
|
|
108
|
+
descId?: string;
|
|
55
109
|
}>;
|
|
56
110
|
readonly external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
57
111
|
title?: string;
|
|
112
|
+
titleId?: string;
|
|
113
|
+
desc?: string;
|
|
114
|
+
descId?: string;
|
|
58
115
|
}>;
|
|
59
116
|
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
60
117
|
title?: string;
|
|
118
|
+
titleId?: string;
|
|
119
|
+
desc?: string;
|
|
120
|
+
descId?: string;
|
|
61
121
|
}>;
|
|
62
122
|
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
63
123
|
title?: string;
|
|
124
|
+
titleId?: string;
|
|
125
|
+
desc?: string;
|
|
126
|
+
descId?: string;
|
|
64
127
|
}>;
|
|
65
128
|
readonly filter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
66
129
|
title?: string;
|
|
130
|
+
titleId?: string;
|
|
131
|
+
desc?: string;
|
|
132
|
+
descId?: string;
|
|
67
133
|
}>;
|
|
68
134
|
readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
69
135
|
title?: string;
|
|
136
|
+
titleId?: string;
|
|
137
|
+
desc?: string;
|
|
138
|
+
descId?: string;
|
|
70
139
|
}>;
|
|
71
140
|
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
72
141
|
title?: string;
|
|
142
|
+
titleId?: string;
|
|
143
|
+
desc?: string;
|
|
144
|
+
descId?: string;
|
|
73
145
|
}>;
|
|
74
146
|
readonly heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
147
|
title?: string;
|
|
148
|
+
titleId?: string;
|
|
149
|
+
desc?: string;
|
|
150
|
+
descId?: string;
|
|
76
151
|
}>;
|
|
77
152
|
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
78
153
|
title?: string;
|
|
154
|
+
titleId?: string;
|
|
155
|
+
desc?: string;
|
|
156
|
+
descId?: string;
|
|
79
157
|
}>;
|
|
80
158
|
readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
159
|
title?: string;
|
|
160
|
+
titleId?: string;
|
|
161
|
+
desc?: string;
|
|
162
|
+
descId?: string;
|
|
82
163
|
}>;
|
|
83
164
|
readonly info_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
84
165
|
title?: string;
|
|
166
|
+
titleId?: string;
|
|
167
|
+
desc?: string;
|
|
168
|
+
descId?: string;
|
|
85
169
|
}>;
|
|
86
170
|
readonly info_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
171
|
title?: string;
|
|
172
|
+
titleId?: string;
|
|
173
|
+
desc?: string;
|
|
174
|
+
descId?: string;
|
|
88
175
|
}>;
|
|
89
176
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
90
177
|
title?: string;
|
|
178
|
+
titleId?: string;
|
|
179
|
+
desc?: string;
|
|
180
|
+
descId?: string;
|
|
91
181
|
}>;
|
|
92
182
|
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
93
183
|
title?: string;
|
|
184
|
+
titleId?: string;
|
|
185
|
+
desc?: string;
|
|
186
|
+
descId?: string;
|
|
94
187
|
}>;
|
|
95
188
|
readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
96
189
|
title?: string;
|
|
190
|
+
titleId?: string;
|
|
191
|
+
desc?: string;
|
|
192
|
+
descId?: string;
|
|
97
193
|
}>;
|
|
98
194
|
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
99
195
|
title?: string;
|
|
196
|
+
titleId?: string;
|
|
197
|
+
desc?: string;
|
|
198
|
+
descId?: string;
|
|
100
199
|
}>;
|
|
101
200
|
readonly mute: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
102
201
|
title?: string;
|
|
202
|
+
titleId?: string;
|
|
203
|
+
desc?: string;
|
|
204
|
+
descId?: string;
|
|
103
205
|
}>;
|
|
104
206
|
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
105
207
|
title?: string;
|
|
208
|
+
titleId?: string;
|
|
209
|
+
desc?: string;
|
|
210
|
+
descId?: string;
|
|
106
211
|
}>;
|
|
107
212
|
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
108
213
|
title?: string;
|
|
214
|
+
titleId?: string;
|
|
215
|
+
desc?: string;
|
|
216
|
+
descId?: string;
|
|
109
217
|
}>;
|
|
110
218
|
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
219
|
title?: string;
|
|
220
|
+
titleId?: string;
|
|
221
|
+
desc?: string;
|
|
222
|
+
descId?: string;
|
|
112
223
|
}>;
|
|
113
224
|
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
225
|
title?: string;
|
|
226
|
+
titleId?: string;
|
|
227
|
+
desc?: string;
|
|
228
|
+
descId?: string;
|
|
115
229
|
}>;
|
|
116
230
|
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
231
|
title?: string;
|
|
232
|
+
titleId?: string;
|
|
233
|
+
desc?: string;
|
|
234
|
+
descId?: string;
|
|
118
235
|
}>;
|
|
119
236
|
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
120
237
|
title?: string;
|
|
238
|
+
titleId?: string;
|
|
239
|
+
desc?: string;
|
|
240
|
+
descId?: string;
|
|
121
241
|
}>;
|
|
122
242
|
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
243
|
title?: string;
|
|
244
|
+
titleId?: string;
|
|
245
|
+
desc?: string;
|
|
246
|
+
descId?: string;
|
|
124
247
|
}>;
|
|
125
248
|
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
126
249
|
title?: string;
|
|
250
|
+
titleId?: string;
|
|
251
|
+
desc?: string;
|
|
252
|
+
descId?: string;
|
|
127
253
|
}>;
|
|
128
254
|
readonly react: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
129
255
|
title?: string;
|
|
256
|
+
titleId?: string;
|
|
257
|
+
desc?: string;
|
|
258
|
+
descId?: string;
|
|
130
259
|
}>;
|
|
131
260
|
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
132
261
|
title?: string;
|
|
262
|
+
titleId?: string;
|
|
263
|
+
desc?: string;
|
|
264
|
+
descId?: string;
|
|
133
265
|
}>;
|
|
134
266
|
readonly share_arrow: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
135
267
|
title?: string;
|
|
268
|
+
titleId?: string;
|
|
269
|
+
desc?: string;
|
|
270
|
+
descId?: string;
|
|
136
271
|
}>;
|
|
137
272
|
readonly share_arrow_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
138
273
|
title?: string;
|
|
274
|
+
titleId?: string;
|
|
275
|
+
desc?: string;
|
|
276
|
+
descId?: string;
|
|
139
277
|
}>;
|
|
140
278
|
readonly sort: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
141
279
|
title?: string;
|
|
280
|
+
titleId?: string;
|
|
281
|
+
desc?: string;
|
|
282
|
+
descId?: string;
|
|
142
283
|
}>;
|
|
143
284
|
readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
144
285
|
title?: string;
|
|
286
|
+
titleId?: string;
|
|
287
|
+
desc?: string;
|
|
288
|
+
descId?: string;
|
|
145
289
|
}>;
|
|
146
290
|
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
147
291
|
title?: string;
|
|
292
|
+
titleId?: string;
|
|
293
|
+
desc?: string;
|
|
294
|
+
descId?: string;
|
|
148
295
|
}>;
|
|
149
296
|
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
150
297
|
title?: string;
|
|
298
|
+
titleId?: string;
|
|
299
|
+
desc?: string;
|
|
300
|
+
descId?: string;
|
|
151
301
|
}>;
|
|
152
302
|
};
|
|
153
303
|
export default IconsMap;
|