@goodhood-web/ui 1.5.0-development.1 → 1.5.0-development.3
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.d.ts +32 -31
- package/index.js +21 -21
- package/index.mjs +835 -831
- package/lib/Accordion/Accordion.d.ts +1 -0
- package/lib/Accordion/Accordion.types.d.ts +1 -0
- package/lib/Accordion/AccordionItem.d.ts +1 -0
- package/lib/Accordion/AccordionItem.types.d.ts +1 -0
- package/lib/BaseButton/BaseButton.d.ts +2 -1
- package/lib/Button/Button.d.ts +1 -0
- package/lib/Button/Button.types.d.ts +2 -1
- package/lib/ButtonPrimary/ButtonPrimary.d.ts +1 -0
- package/lib/ButtonPrimary/ButtonPrimary.types.d.ts +2 -1
- package/lib/Card/Card.d.ts +1 -0
- package/lib/Card/Card.types.d.ts +3 -2
- package/lib/Card/CardBody/CardBody.d.ts +1 -0
- package/lib/Card/CardBody/CardBody.types.d.ts +1 -0
- package/lib/Card/CardHeader/CardHeader.d.ts +2 -1
- package/lib/Card/CardHeader/CardHeader.type.d.ts +6 -4
- package/lib/Divider/Divider.d.ts +1 -0
- package/lib/Fieldset/Fieldset.d.ts +1 -0
- package/lib/Fieldset/Fieldset.types.d.ts +1 -0
- package/lib/Form/Form.d.ts +1 -0
- package/lib/Form/Form.types.d.ts +1 -0
- package/lib/Icon/Icon.d.ts +2 -1
- package/lib/Icon/Icon.types.d.ts +3 -2
- package/lib/Icon/icons/24x24/index.d.ts +45 -42
- package/lib/Icon/icons/32x32/index.d.ts +91 -88
- package/lib/Icon/icons/index.d.ts +136 -130
- package/lib/IconButton/IconButton.d.ts +2 -1
- package/lib/IconButton/IconButton.types.d.ts +3 -1
- package/lib/Image/Image.d.ts +1 -0
- package/lib/LabelPill/LabelPill.d.ts +1 -0
- package/lib/Legend/Legend.d.ts +1 -0
- package/lib/MenuItem/MenuItem.d.ts +1 -0
- package/lib/MenuItem/MenuItem.types.d.ts +2 -1
- package/lib/Modal/Backdrop/Backdrop.d.ts +2 -1
- package/lib/Modal/Modal.d.ts +1 -0
- package/lib/Modal/Modal.types.d.ts +3 -2
- package/lib/NavBar/NavBar.d.ts +1 -0
- package/lib/NavBar/NavBar.types.d.ts +1 -0
- package/lib/NavBar/NavItem/NavItem.d.ts +1 -0
- package/lib/NavBar/NavItem/NavItem.types.d.ts +2 -1
- package/lib/NotificationBubble/NotificationBubble.d.ts +1 -0
- package/lib/NotificationBubble/NotificationBubble.types.d.ts +1 -0
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.d.ts +1 -0
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.type.d.ts +1 -1
- package/lib/Popup/Popup.d.ts +1 -0
- package/lib/Popup/Popup.types.d.ts +2 -1
- package/lib/TextButton/TextButton.d.ts +1 -0
- package/lib/TextButton/TextButton.types.d.ts +4 -3
- package/lib/TextInput/TextInput.d.ts +1 -0
- package/lib/TextInput/TextInput.types.d.ts +2 -1
- package/lib/Thumbnail/Thumbnail.d.ts +1 -0
- package/lib/Thumbnail/Thumbnail.type.d.ts +1 -0
- package/lib/Toggle/Toggle.d.ts +1 -0
- package/lib/Toggle/Toggle.types.d.ts +1 -0
- package/lib/ToggleInput/ToggleInput.d.ts +1 -0
- package/lib/ToggleInput/ToggleInput.types.d.ts +2 -1
- package/lib/Typography/Typography.d.ts +1 -0
- package/lib/Typography/Typography.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/utils/index.d.ts +1 -0
|
@@ -1,396 +1,402 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const iconsMap: {
|
|
3
3
|
'24': {
|
|
4
|
-
readonly arrow_left: import(
|
|
4
|
+
readonly arrow_left: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
5
5
|
title?: string | undefined;
|
|
6
6
|
}>;
|
|
7
|
-
readonly arrow_right: import(
|
|
7
|
+
readonly arrow_right: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
8
8
|
title?: string | undefined;
|
|
9
9
|
}>;
|
|
10
|
-
readonly bookmark: import(
|
|
10
|
+
readonly bookmark: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
11
11
|
title?: string | undefined;
|
|
12
12
|
}>;
|
|
13
|
-
readonly bookmarked: import(
|
|
13
|
+
readonly bookmarked: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
14
14
|
title?: string | undefined;
|
|
15
15
|
}>;
|
|
16
|
-
readonly burger_menu: import(
|
|
16
|
+
readonly burger_menu: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
17
17
|
title?: string | undefined;
|
|
18
18
|
}>;
|
|
19
|
-
readonly camera: import(
|
|
19
|
+
readonly camera: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
20
20
|
title?: string | undefined;
|
|
21
21
|
}>;
|
|
22
|
-
readonly checkmark: import(
|
|
22
|
+
readonly checkmark: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
23
23
|
title?: string | undefined;
|
|
24
24
|
}>;
|
|
25
|
-
readonly checkmark_circle: import(
|
|
25
|
+
readonly checkmark_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
26
26
|
title?: string | undefined;
|
|
27
27
|
}>;
|
|
28
|
-
readonly chevron_down: import(
|
|
28
|
+
readonly chevron_down: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
29
29
|
title?: string | undefined;
|
|
30
30
|
}>;
|
|
31
|
-
readonly chevron_left: import(
|
|
31
|
+
readonly chevron_left: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
32
32
|
title?: string | undefined;
|
|
33
33
|
}>;
|
|
34
|
-
readonly chevron_right: import(
|
|
34
|
+
readonly chevron_right: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
35
35
|
title?: string | undefined;
|
|
36
36
|
}>;
|
|
37
|
-
readonly chevron_up: import(
|
|
37
|
+
readonly chevron_up: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
38
38
|
title?: string | undefined;
|
|
39
39
|
}>;
|
|
40
|
-
readonly comment_bubble: import(
|
|
40
|
+
readonly comment_bubble: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
41
41
|
title?: string | undefined;
|
|
42
42
|
}>;
|
|
43
|
-
readonly cross: import(
|
|
43
|
+
readonly cross: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
44
44
|
title?: string | undefined;
|
|
45
45
|
}>;
|
|
46
|
-
readonly cross_circle: import(
|
|
46
|
+
readonly cross_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
47
47
|
title?: string | undefined;
|
|
48
48
|
}>;
|
|
49
|
-
readonly envelope: import(
|
|
49
|
+
readonly envelope: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
50
50
|
title?: string | undefined;
|
|
51
51
|
}>;
|
|
52
|
-
readonly event_calendar: import(
|
|
52
|
+
readonly event_calendar: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
53
53
|
title?: string | undefined;
|
|
54
54
|
}>;
|
|
55
|
-
readonly external_link: import(
|
|
55
|
+
readonly external_link: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
56
56
|
title?: string | undefined;
|
|
57
57
|
}>;
|
|
58
|
-
readonly eye: import(
|
|
58
|
+
readonly eye: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
59
59
|
title?: string | undefined;
|
|
60
60
|
}>;
|
|
61
|
-
readonly eye_crossed: import(
|
|
61
|
+
readonly eye_crossed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
62
62
|
title?: string | undefined;
|
|
63
63
|
}>;
|
|
64
|
-
readonly filter: import(
|
|
64
|
+
readonly filter: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
65
65
|
title?: string | undefined;
|
|
66
66
|
}>;
|
|
67
|
-
readonly globe: import(
|
|
67
|
+
readonly globe: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
68
68
|
title?: string | undefined;
|
|
69
69
|
}>;
|
|
70
|
-
readonly heart: import(
|
|
70
|
+
readonly heart: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
71
71
|
title?: string | undefined;
|
|
72
72
|
}>;
|
|
73
|
-
readonly image: import(
|
|
73
|
+
readonly image: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
74
74
|
title?: string | undefined;
|
|
75
75
|
}>;
|
|
76
|
-
readonly loudspeaker: import(
|
|
76
|
+
readonly loudspeaker: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
77
77
|
title?: string | undefined;
|
|
78
78
|
}>;
|
|
79
|
-
readonly marketplace: import(
|
|
79
|
+
readonly marketplace: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
80
80
|
title?: string | undefined;
|
|
81
81
|
}>;
|
|
82
|
-
readonly more_dots: import(
|
|
82
|
+
readonly more_dots: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
83
83
|
title?: string | undefined;
|
|
84
84
|
}>;
|
|
85
|
-
readonly more_dots_alt: import(
|
|
85
|
+
readonly more_dots_alt: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
86
86
|
title?: string | undefined;
|
|
87
87
|
}>;
|
|
88
|
-
readonly mute: import(
|
|
88
|
+
readonly mute: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
89
89
|
title?: string | undefined;
|
|
90
90
|
}>;
|
|
91
|
-
readonly notification_bell: import(
|
|
91
|
+
readonly notification_bell: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
92
92
|
title?: string | undefined;
|
|
93
93
|
}>;
|
|
94
|
-
readonly paperclip: import(
|
|
94
|
+
readonly paperclip: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
95
95
|
title?: string | undefined;
|
|
96
96
|
}>;
|
|
97
|
-
readonly pencil: import(
|
|
97
|
+
readonly pencil: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
98
98
|
title?: string | undefined;
|
|
99
99
|
}>;
|
|
100
|
-
readonly pin: import(
|
|
100
|
+
readonly pin: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
101
101
|
title?: string | undefined;
|
|
102
102
|
}>;
|
|
103
|
-
readonly plus: import(
|
|
103
|
+
readonly plus: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
104
104
|
title?: string | undefined;
|
|
105
105
|
}>;
|
|
106
|
-
readonly plus_circle: import(
|
|
106
|
+
readonly plus_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
107
107
|
title?: string | undefined;
|
|
108
108
|
}>;
|
|
109
|
-
readonly privacy_lock: import(
|
|
109
|
+
readonly privacy_lock: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
110
110
|
title?: string | undefined;
|
|
111
111
|
}>;
|
|
112
|
-
readonly
|
|
112
|
+
readonly privacy_lock_closed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
113
113
|
title?: string | undefined;
|
|
114
114
|
}>;
|
|
115
|
-
readonly
|
|
115
|
+
readonly search: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
116
116
|
title?: string | undefined;
|
|
117
117
|
}>;
|
|
118
|
-
readonly
|
|
118
|
+
readonly share_arrow: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
119
119
|
title?: string | undefined;
|
|
120
120
|
}>;
|
|
121
|
-
readonly
|
|
121
|
+
readonly share_arrow_outline: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
122
122
|
title?: string | undefined;
|
|
123
123
|
}>;
|
|
124
|
-
readonly
|
|
124
|
+
readonly sort: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
125
125
|
title?: string | undefined;
|
|
126
126
|
}>;
|
|
127
|
-
readonly
|
|
127
|
+
readonly thanks: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
128
|
+
title?: string | undefined;
|
|
129
|
+
}>;
|
|
130
|
+
readonly trash_can: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
128
131
|
title?: string | undefined;
|
|
129
132
|
}>;
|
|
130
133
|
};
|
|
131
134
|
'32': {
|
|
132
|
-
readonly address_book: import(
|
|
135
|
+
readonly address_book: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
136
|
+
title?: string | undefined;
|
|
137
|
+
}>;
|
|
138
|
+
readonly baby_toy: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
133
139
|
title?: string | undefined;
|
|
134
140
|
}>;
|
|
135
|
-
readonly
|
|
141
|
+
readonly bicycle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
136
142
|
title?: string | undefined;
|
|
137
143
|
}>;
|
|
138
|
-
readonly
|
|
144
|
+
readonly bookmark: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
139
145
|
title?: string | undefined;
|
|
140
146
|
}>;
|
|
141
|
-
readonly
|
|
147
|
+
readonly books: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
142
148
|
title?: string | undefined;
|
|
143
149
|
}>;
|
|
144
|
-
readonly
|
|
150
|
+
readonly bubble_heart_filled: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
145
151
|
title?: string | undefined;
|
|
146
152
|
}>;
|
|
147
|
-
readonly
|
|
153
|
+
readonly bubble_heart_outline: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
148
154
|
title?: string | undefined;
|
|
149
155
|
}>;
|
|
150
|
-
readonly
|
|
156
|
+
readonly buildings: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
151
157
|
title?: string | undefined;
|
|
152
158
|
}>;
|
|
153
|
-
readonly
|
|
159
|
+
readonly burger_menu: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
154
160
|
title?: string | undefined;
|
|
155
161
|
}>;
|
|
156
|
-
readonly
|
|
162
|
+
readonly business: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
157
163
|
title?: string | undefined;
|
|
158
164
|
}>;
|
|
159
|
-
readonly
|
|
165
|
+
readonly business_profile: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
160
166
|
title?: string | undefined;
|
|
161
167
|
}>;
|
|
162
|
-
readonly
|
|
168
|
+
readonly camera: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
163
169
|
title?: string | undefined;
|
|
164
170
|
}>;
|
|
165
|
-
readonly
|
|
171
|
+
readonly camera_crossed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
166
172
|
title?: string | undefined;
|
|
167
173
|
}>;
|
|
168
|
-
readonly
|
|
174
|
+
readonly car: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
169
175
|
title?: string | undefined;
|
|
170
176
|
}>;
|
|
171
|
-
readonly
|
|
177
|
+
readonly carrot: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
172
178
|
title?: string | undefined;
|
|
173
179
|
}>;
|
|
174
|
-
readonly
|
|
180
|
+
readonly chat: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
175
181
|
title?: string | undefined;
|
|
176
182
|
}>;
|
|
177
|
-
readonly
|
|
183
|
+
readonly checkmark_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
178
184
|
title?: string | undefined;
|
|
179
185
|
}>;
|
|
180
|
-
readonly
|
|
186
|
+
readonly christmas_tree: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
181
187
|
title?: string | undefined;
|
|
182
188
|
}>;
|
|
183
|
-
readonly
|
|
189
|
+
readonly clipboard: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
184
190
|
title?: string | undefined;
|
|
185
191
|
}>;
|
|
186
|
-
readonly
|
|
192
|
+
readonly clothing: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
187
193
|
title?: string | undefined;
|
|
188
194
|
}>;
|
|
189
|
-
readonly
|
|
195
|
+
readonly cocktail: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
190
196
|
title?: string | undefined;
|
|
191
197
|
}>;
|
|
192
|
-
readonly
|
|
198
|
+
readonly comment_bubble: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
193
199
|
title?: string | undefined;
|
|
194
200
|
}>;
|
|
195
|
-
readonly
|
|
201
|
+
readonly compass: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
196
202
|
title?: string | undefined;
|
|
197
203
|
}>;
|
|
198
|
-
readonly
|
|
204
|
+
readonly computer: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
199
205
|
title?: string | undefined;
|
|
200
206
|
}>;
|
|
201
|
-
readonly
|
|
207
|
+
readonly couch: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
202
208
|
title?: string | undefined;
|
|
203
209
|
}>;
|
|
204
|
-
readonly
|
|
210
|
+
readonly credit_card: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
205
211
|
title?: string | undefined;
|
|
206
212
|
}>;
|
|
207
|
-
readonly
|
|
213
|
+
readonly cross_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
208
214
|
title?: string | undefined;
|
|
209
215
|
}>;
|
|
210
|
-
readonly
|
|
216
|
+
readonly cutlery: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
211
217
|
title?: string | undefined;
|
|
212
218
|
}>;
|
|
213
|
-
readonly
|
|
219
|
+
readonly drill_tool: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
214
220
|
title?: string | undefined;
|
|
215
221
|
}>;
|
|
216
|
-
readonly
|
|
222
|
+
readonly email: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
217
223
|
title?: string | undefined;
|
|
218
224
|
}>;
|
|
219
|
-
readonly
|
|
225
|
+
readonly envelope: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
220
226
|
title?: string | undefined;
|
|
221
227
|
}>;
|
|
222
|
-
readonly
|
|
228
|
+
readonly event_calendar_check: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
223
229
|
title?: string | undefined;
|
|
224
230
|
}>;
|
|
225
|
-
readonly
|
|
231
|
+
readonly event_calendar_date: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
226
232
|
title?: string | undefined;
|
|
227
233
|
}>;
|
|
228
|
-
readonly
|
|
234
|
+
readonly event_calendar_plus: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
229
235
|
title?: string | undefined;
|
|
230
236
|
}>;
|
|
231
|
-
readonly
|
|
237
|
+
readonly exchange: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
232
238
|
title?: string | undefined;
|
|
233
239
|
}>;
|
|
234
|
-
readonly
|
|
240
|
+
readonly eye: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
235
241
|
title?: string | undefined;
|
|
236
242
|
}>;
|
|
237
|
-
readonly
|
|
243
|
+
readonly eye_crossed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
238
244
|
title?: string | undefined;
|
|
239
245
|
}>;
|
|
240
|
-
readonly
|
|
246
|
+
readonly gift: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
241
247
|
title?: string | undefined;
|
|
242
248
|
}>;
|
|
243
|
-
readonly
|
|
249
|
+
readonly group: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
244
250
|
title?: string | undefined;
|
|
245
251
|
}>;
|
|
246
|
-
readonly
|
|
252
|
+
readonly healthcare: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
247
253
|
title?: string | undefined;
|
|
248
254
|
}>;
|
|
249
|
-
readonly
|
|
255
|
+
readonly heart: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
250
256
|
title?: string | undefined;
|
|
251
257
|
}>;
|
|
252
|
-
readonly
|
|
258
|
+
readonly house: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
253
259
|
title?: string | undefined;
|
|
254
260
|
}>;
|
|
255
|
-
readonly
|
|
261
|
+
readonly image: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
256
262
|
title?: string | undefined;
|
|
257
263
|
}>;
|
|
258
|
-
readonly
|
|
264
|
+
readonly info: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
259
265
|
title?: string | undefined;
|
|
260
266
|
}>;
|
|
261
|
-
readonly
|
|
267
|
+
readonly invite_neighbour: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
262
268
|
title?: string | undefined;
|
|
263
269
|
}>;
|
|
264
|
-
readonly
|
|
270
|
+
readonly key: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
265
271
|
title?: string | undefined;
|
|
266
272
|
}>;
|
|
267
|
-
readonly
|
|
273
|
+
readonly kitchen_pot: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
268
274
|
title?: string | undefined;
|
|
269
275
|
}>;
|
|
270
|
-
readonly
|
|
276
|
+
readonly list: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
271
277
|
title?: string | undefined;
|
|
272
278
|
}>;
|
|
273
|
-
readonly
|
|
279
|
+
readonly log_in: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
274
280
|
title?: string | undefined;
|
|
275
281
|
}>;
|
|
276
|
-
readonly
|
|
282
|
+
readonly log_out: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
277
283
|
title?: string | undefined;
|
|
278
284
|
}>;
|
|
279
|
-
readonly
|
|
285
|
+
readonly loudspeaker: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
280
286
|
title?: string | undefined;
|
|
281
287
|
}>;
|
|
282
|
-
readonly
|
|
288
|
+
readonly map: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
283
289
|
title?: string | undefined;
|
|
284
290
|
}>;
|
|
285
|
-
readonly
|
|
291
|
+
readonly marketplace: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
286
292
|
title?: string | undefined;
|
|
287
293
|
}>;
|
|
288
|
-
readonly
|
|
294
|
+
readonly miscellaneous_other: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
289
295
|
title?: string | undefined;
|
|
290
296
|
}>;
|
|
291
|
-
readonly
|
|
297
|
+
readonly more_dots: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
292
298
|
title?: string | undefined;
|
|
293
299
|
}>;
|
|
294
|
-
readonly
|
|
300
|
+
readonly more_dots_alt: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
295
301
|
title?: string | undefined;
|
|
296
302
|
}>;
|
|
297
|
-
readonly
|
|
303
|
+
readonly music: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
298
304
|
title?: string | undefined;
|
|
299
305
|
}>;
|
|
300
|
-
readonly
|
|
306
|
+
readonly nebenan_de: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
301
307
|
title?: string | undefined;
|
|
302
308
|
}>;
|
|
303
|
-
readonly
|
|
309
|
+
readonly neighbour: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
304
310
|
title?: string | undefined;
|
|
305
311
|
}>;
|
|
306
|
-
readonly
|
|
312
|
+
readonly notification_bell: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
307
313
|
title?: string | undefined;
|
|
308
314
|
}>;
|
|
309
|
-
readonly
|
|
315
|
+
readonly organisation: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
310
316
|
title?: string | undefined;
|
|
311
317
|
}>;
|
|
312
|
-
readonly
|
|
318
|
+
readonly paper_form_empty: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
313
319
|
title?: string | undefined;
|
|
314
320
|
}>;
|
|
315
|
-
readonly
|
|
321
|
+
readonly paper_form_filled: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
316
322
|
title?: string | undefined;
|
|
317
323
|
}>;
|
|
318
|
-
readonly
|
|
324
|
+
readonly paperclip: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
319
325
|
title?: string | undefined;
|
|
320
326
|
}>;
|
|
321
|
-
readonly
|
|
327
|
+
readonly paw: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
322
328
|
title?: string | undefined;
|
|
323
329
|
}>;
|
|
324
|
-
readonly
|
|
330
|
+
readonly pencil: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
325
331
|
title?: string | undefined;
|
|
326
332
|
}>;
|
|
327
|
-
readonly
|
|
333
|
+
readonly pin: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
328
334
|
title?: string | undefined;
|
|
329
335
|
}>;
|
|
330
|
-
readonly
|
|
336
|
+
readonly pins: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
331
337
|
title?: string | undefined;
|
|
332
338
|
}>;
|
|
333
|
-
readonly
|
|
339
|
+
readonly plant: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
334
340
|
title?: string | undefined;
|
|
335
341
|
}>;
|
|
336
|
-
readonly
|
|
342
|
+
readonly plus: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
337
343
|
title?: string | undefined;
|
|
338
344
|
}>;
|
|
339
|
-
readonly
|
|
345
|
+
readonly plus_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
340
346
|
title?: string | undefined;
|
|
341
347
|
}>;
|
|
342
|
-
readonly
|
|
348
|
+
readonly post: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
343
349
|
title?: string | undefined;
|
|
344
350
|
}>;
|
|
345
|
-
readonly
|
|
351
|
+
readonly privacy_lock: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
346
352
|
title?: string | undefined;
|
|
347
353
|
}>;
|
|
348
|
-
readonly
|
|
354
|
+
readonly privacy_lock_closed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
349
355
|
title?: string | undefined;
|
|
350
356
|
}>;
|
|
351
|
-
readonly qr_code: import(
|
|
357
|
+
readonly qr_code: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
352
358
|
title?: string | undefined;
|
|
353
359
|
}>;
|
|
354
|
-
readonly search: import(
|
|
360
|
+
readonly search: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
355
361
|
title?: string | undefined;
|
|
356
362
|
}>;
|
|
357
|
-
readonly settings_cog: import(
|
|
363
|
+
readonly settings_cog: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
358
364
|
title?: string | undefined;
|
|
359
365
|
}>;
|
|
360
|
-
readonly shopping_bag: import(
|
|
366
|
+
readonly shopping_bag: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
361
367
|
title?: string | undefined;
|
|
362
368
|
}>;
|
|
363
|
-
readonly shopping_cart: import(
|
|
369
|
+
readonly shopping_cart: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
364
370
|
title?: string | undefined;
|
|
365
371
|
}>;
|
|
366
|
-
readonly special_place: import(
|
|
372
|
+
readonly special_place: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
367
373
|
title?: string | undefined;
|
|
368
374
|
}>;
|
|
369
|
-
readonly suitcase: import(
|
|
375
|
+
readonly suitcase: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
370
376
|
title?: string | undefined;
|
|
371
377
|
}>;
|
|
372
|
-
readonly supporter: import(
|
|
378
|
+
readonly supporter: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
373
379
|
title?: string | undefined;
|
|
374
380
|
}>;
|
|
375
|
-
readonly tennis_ball: import(
|
|
381
|
+
readonly tennis_ball: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
376
382
|
title?: string | undefined;
|
|
377
383
|
}>;
|
|
378
|
-
readonly thanks: import(
|
|
384
|
+
readonly thanks: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
379
385
|
title?: string | undefined;
|
|
380
386
|
}>;
|
|
381
|
-
readonly trash_can: import(
|
|
387
|
+
readonly trash_can: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
382
388
|
title?: string | undefined;
|
|
383
389
|
}>;
|
|
384
|
-
readonly truck: import(
|
|
390
|
+
readonly truck: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
385
391
|
title?: string | undefined;
|
|
386
392
|
}>;
|
|
387
|
-
readonly user: import(
|
|
393
|
+
readonly user: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
388
394
|
title?: string | undefined;
|
|
389
395
|
}>;
|
|
390
|
-
readonly user_profile: import(
|
|
396
|
+
readonly user_profile: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
391
397
|
title?: string | undefined;
|
|
392
398
|
}>;
|
|
393
|
-
readonly wellness: import(
|
|
399
|
+
readonly wellness: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
394
400
|
title?: string | undefined;
|
|
395
401
|
}>;
|
|
396
402
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { IconButtonProps } from './IconButton.types';
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
declare const IconButton: ({ className, icon, iconClassName, size, variant, ...baseButtonProps }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
4
|
export default IconButton;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { ButtonProps } from '../Button/Button.types';
|
|
2
1
|
import { Icon24, Icon32 } from '../Icon/Icon.types';
|
|
2
|
+
import { ButtonProps } from '../Button/Button.types';
|
|
3
|
+
|
|
3
4
|
type BaseIconButtonProps = Omit<ButtonProps, 'children' | 'ref' | 'className'> & ({
|
|
4
5
|
ariaLabel: string;
|
|
5
6
|
} | {
|
|
6
7
|
ariaLabelledBy: string;
|
|
7
8
|
}) & {
|
|
8
9
|
className?: string;
|
|
10
|
+
iconClassName?: string;
|
|
9
11
|
type?: 'button' | 'submit' | 'reset';
|
|
10
12
|
};
|
|
11
13
|
type IconButtonIcon24Props = {
|
package/lib/Image/Image.d.ts
CHANGED
package/lib/Legend/Legend.d.ts
CHANGED