@goodhood-web/ui 1.5.0-development.1 → 1.5.0-development.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +32 -31
- package/index.js +11 -11
- package/index.mjs +78 -76
- 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 +42 -42
- package/lib/Icon/icons/32x32/index.d.ts +88 -88
- package/lib/Icon/icons/index.d.ts +130 -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
package/lib/Icon/Icon.types.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { default as icons32 } from './icons/32x32';
|
|
2
|
+
import { default as icons24 } from './icons/24x24';
|
|
1
3
|
import { AriaRole } from 'react';
|
|
2
|
-
|
|
3
|
-
import icons32 from './icons/32x32';
|
|
4
|
+
|
|
4
5
|
export type Icon32 = keyof typeof icons32;
|
|
5
6
|
export type Icon24 = keyof typeof icons24;
|
|
6
7
|
type BaseIconProps = {
|
|
@@ -1,129 +1,129 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const IconsMap: {
|
|
3
|
-
readonly arrow_left: import(
|
|
3
|
+
readonly arrow_left: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
4
4
|
title?: string | undefined;
|
|
5
5
|
}>;
|
|
6
|
-
readonly arrow_right: import(
|
|
6
|
+
readonly arrow_right: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
7
7
|
title?: string | undefined;
|
|
8
8
|
}>;
|
|
9
|
-
readonly bookmark: import(
|
|
9
|
+
readonly bookmark: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
10
10
|
title?: string | undefined;
|
|
11
11
|
}>;
|
|
12
|
-
readonly bookmarked: import(
|
|
12
|
+
readonly bookmarked: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
13
13
|
title?: string | undefined;
|
|
14
14
|
}>;
|
|
15
|
-
readonly burger_menu: import(
|
|
15
|
+
readonly burger_menu: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
16
16
|
title?: string | undefined;
|
|
17
17
|
}>;
|
|
18
|
-
readonly camera: import(
|
|
18
|
+
readonly camera: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
19
19
|
title?: string | undefined;
|
|
20
20
|
}>;
|
|
21
|
-
readonly checkmark: import(
|
|
21
|
+
readonly checkmark: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
22
22
|
title?: string | undefined;
|
|
23
23
|
}>;
|
|
24
|
-
readonly checkmark_circle: import(
|
|
24
|
+
readonly checkmark_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
25
25
|
title?: string | undefined;
|
|
26
26
|
}>;
|
|
27
|
-
readonly chevron_down: import(
|
|
27
|
+
readonly chevron_down: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
28
28
|
title?: string | undefined;
|
|
29
29
|
}>;
|
|
30
|
-
readonly chevron_left: import(
|
|
30
|
+
readonly chevron_left: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
31
31
|
title?: string | undefined;
|
|
32
32
|
}>;
|
|
33
|
-
readonly chevron_right: import(
|
|
33
|
+
readonly chevron_right: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
34
34
|
title?: string | undefined;
|
|
35
35
|
}>;
|
|
36
|
-
readonly chevron_up: import(
|
|
36
|
+
readonly chevron_up: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
37
37
|
title?: string | undefined;
|
|
38
38
|
}>;
|
|
39
|
-
readonly comment_bubble: import(
|
|
39
|
+
readonly comment_bubble: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
40
40
|
title?: string | undefined;
|
|
41
41
|
}>;
|
|
42
|
-
readonly cross: import(
|
|
42
|
+
readonly cross: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
43
43
|
title?: string | undefined;
|
|
44
44
|
}>;
|
|
45
|
-
readonly cross_circle: import(
|
|
45
|
+
readonly cross_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
46
46
|
title?: string | undefined;
|
|
47
47
|
}>;
|
|
48
|
-
readonly envelope: import(
|
|
48
|
+
readonly envelope: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
49
49
|
title?: string | undefined;
|
|
50
50
|
}>;
|
|
51
|
-
readonly event_calendar: import(
|
|
51
|
+
readonly event_calendar: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
52
52
|
title?: string | undefined;
|
|
53
53
|
}>;
|
|
54
|
-
readonly external_link: import(
|
|
54
|
+
readonly external_link: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
55
55
|
title?: string | undefined;
|
|
56
56
|
}>;
|
|
57
|
-
readonly eye: import(
|
|
57
|
+
readonly eye: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
58
58
|
title?: string | undefined;
|
|
59
59
|
}>;
|
|
60
|
-
readonly eye_crossed: import(
|
|
60
|
+
readonly eye_crossed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
61
61
|
title?: string | undefined;
|
|
62
62
|
}>;
|
|
63
|
-
readonly filter: import(
|
|
63
|
+
readonly filter: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
64
64
|
title?: string | undefined;
|
|
65
65
|
}>;
|
|
66
|
-
readonly globe: import(
|
|
66
|
+
readonly globe: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
67
67
|
title?: string | undefined;
|
|
68
68
|
}>;
|
|
69
|
-
readonly heart: import(
|
|
69
|
+
readonly heart: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
70
70
|
title?: string | undefined;
|
|
71
71
|
}>;
|
|
72
|
-
readonly image: import(
|
|
72
|
+
readonly image: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
73
73
|
title?: string | undefined;
|
|
74
74
|
}>;
|
|
75
|
-
readonly loudspeaker: import(
|
|
75
|
+
readonly loudspeaker: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
76
76
|
title?: string | undefined;
|
|
77
77
|
}>;
|
|
78
|
-
readonly marketplace: import(
|
|
78
|
+
readonly marketplace: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
79
79
|
title?: string | undefined;
|
|
80
80
|
}>;
|
|
81
|
-
readonly more_dots: import(
|
|
81
|
+
readonly more_dots: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
82
82
|
title?: string | undefined;
|
|
83
83
|
}>;
|
|
84
|
-
readonly more_dots_alt: import(
|
|
84
|
+
readonly more_dots_alt: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
85
85
|
title?: string | undefined;
|
|
86
86
|
}>;
|
|
87
|
-
readonly mute: import(
|
|
87
|
+
readonly mute: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
88
88
|
title?: string | undefined;
|
|
89
89
|
}>;
|
|
90
|
-
readonly notification_bell: import(
|
|
90
|
+
readonly notification_bell: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
91
91
|
title?: string | undefined;
|
|
92
92
|
}>;
|
|
93
|
-
readonly paperclip: import(
|
|
93
|
+
readonly paperclip: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
94
94
|
title?: string | undefined;
|
|
95
95
|
}>;
|
|
96
|
-
readonly pencil: import(
|
|
96
|
+
readonly pencil: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
97
97
|
title?: string | undefined;
|
|
98
98
|
}>;
|
|
99
|
-
readonly pin: import(
|
|
99
|
+
readonly pin: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
100
100
|
title?: string | undefined;
|
|
101
101
|
}>;
|
|
102
|
-
readonly plus: import(
|
|
102
|
+
readonly plus: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
103
103
|
title?: string | undefined;
|
|
104
104
|
}>;
|
|
105
|
-
readonly plus_circle: import(
|
|
105
|
+
readonly plus_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
106
106
|
title?: string | undefined;
|
|
107
107
|
}>;
|
|
108
|
-
readonly privacy_lock: import(
|
|
108
|
+
readonly privacy_lock: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
109
109
|
title?: string | undefined;
|
|
110
110
|
}>;
|
|
111
|
-
readonly search: import(
|
|
111
|
+
readonly search: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
112
112
|
title?: string | undefined;
|
|
113
113
|
}>;
|
|
114
|
-
readonly share_arrow: import(
|
|
114
|
+
readonly share_arrow: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
115
115
|
title?: string | undefined;
|
|
116
116
|
}>;
|
|
117
|
-
readonly share_arrow_outline: import(
|
|
117
|
+
readonly share_arrow_outline: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
118
118
|
title?: string | undefined;
|
|
119
119
|
}>;
|
|
120
|
-
readonly sort: import(
|
|
120
|
+
readonly sort: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
121
121
|
title?: string | undefined;
|
|
122
122
|
}>;
|
|
123
|
-
readonly thanks: import(
|
|
123
|
+
readonly thanks: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
124
124
|
title?: string | undefined;
|
|
125
125
|
}>;
|
|
126
|
-
readonly trash_can: import(
|
|
126
|
+
readonly trash_can: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
127
127
|
title?: string | undefined;
|
|
128
128
|
}>;
|
|
129
129
|
};
|
|
@@ -1,267 +1,267 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const IconsMap: {
|
|
3
|
-
readonly address_book: import(
|
|
3
|
+
readonly address_book: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
4
4
|
title?: string | undefined;
|
|
5
5
|
}>;
|
|
6
|
-
readonly baby_toy: import(
|
|
6
|
+
readonly baby_toy: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
7
7
|
title?: string | undefined;
|
|
8
8
|
}>;
|
|
9
|
-
readonly bicycle: import(
|
|
9
|
+
readonly bicycle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
10
10
|
title?: string | undefined;
|
|
11
11
|
}>;
|
|
12
|
-
readonly bookmark: import(
|
|
12
|
+
readonly bookmark: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
13
13
|
title?: string | undefined;
|
|
14
14
|
}>;
|
|
15
|
-
readonly books: import(
|
|
15
|
+
readonly books: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
16
16
|
title?: string | undefined;
|
|
17
17
|
}>;
|
|
18
|
-
readonly bubble_heart_filled: import(
|
|
18
|
+
readonly bubble_heart_filled: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
19
19
|
title?: string | undefined;
|
|
20
20
|
}>;
|
|
21
|
-
readonly bubble_heart_outline: import(
|
|
21
|
+
readonly bubble_heart_outline: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
22
22
|
title?: string | undefined;
|
|
23
23
|
}>;
|
|
24
|
-
readonly buildings: import(
|
|
24
|
+
readonly buildings: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
25
25
|
title?: string | undefined;
|
|
26
26
|
}>;
|
|
27
|
-
readonly burger_menu: import(
|
|
27
|
+
readonly burger_menu: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
28
28
|
title?: string | undefined;
|
|
29
29
|
}>;
|
|
30
|
-
readonly business: import(
|
|
30
|
+
readonly business: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
31
31
|
title?: string | undefined;
|
|
32
32
|
}>;
|
|
33
|
-
readonly business_profile: import(
|
|
33
|
+
readonly business_profile: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
34
34
|
title?: string | undefined;
|
|
35
35
|
}>;
|
|
36
|
-
readonly camera: import(
|
|
36
|
+
readonly camera: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
37
37
|
title?: string | undefined;
|
|
38
38
|
}>;
|
|
39
|
-
readonly camera_crossed: import(
|
|
39
|
+
readonly camera_crossed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
40
40
|
title?: string | undefined;
|
|
41
41
|
}>;
|
|
42
|
-
readonly car: import(
|
|
42
|
+
readonly car: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
43
43
|
title?: string | undefined;
|
|
44
44
|
}>;
|
|
45
|
-
readonly carrot: import(
|
|
45
|
+
readonly carrot: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
46
46
|
title?: string | undefined;
|
|
47
47
|
}>;
|
|
48
|
-
readonly chat: import(
|
|
48
|
+
readonly chat: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
49
49
|
title?: string | undefined;
|
|
50
50
|
}>;
|
|
51
|
-
readonly checkmark_circle: import(
|
|
51
|
+
readonly checkmark_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
52
52
|
title?: string | undefined;
|
|
53
53
|
}>;
|
|
54
|
-
readonly christmas_tree: import(
|
|
54
|
+
readonly christmas_tree: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
55
55
|
title?: string | undefined;
|
|
56
56
|
}>;
|
|
57
|
-
readonly clipboard: import(
|
|
57
|
+
readonly clipboard: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
58
58
|
title?: string | undefined;
|
|
59
59
|
}>;
|
|
60
|
-
readonly clothing: import(
|
|
60
|
+
readonly clothing: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
61
61
|
title?: string | undefined;
|
|
62
62
|
}>;
|
|
63
|
-
readonly cocktail: import(
|
|
63
|
+
readonly cocktail: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
64
64
|
title?: string | undefined;
|
|
65
65
|
}>;
|
|
66
|
-
readonly comment_bubble: import(
|
|
66
|
+
readonly comment_bubble: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
67
67
|
title?: string | undefined;
|
|
68
68
|
}>;
|
|
69
|
-
readonly compass: import(
|
|
69
|
+
readonly compass: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
70
70
|
title?: string | undefined;
|
|
71
71
|
}>;
|
|
72
|
-
readonly computer: import(
|
|
72
|
+
readonly computer: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
73
73
|
title?: string | undefined;
|
|
74
74
|
}>;
|
|
75
|
-
readonly couch: import(
|
|
75
|
+
readonly couch: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
76
76
|
title?: string | undefined;
|
|
77
77
|
}>;
|
|
78
|
-
readonly credit_card: import(
|
|
78
|
+
readonly credit_card: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
79
79
|
title?: string | undefined;
|
|
80
80
|
}>;
|
|
81
|
-
readonly cross_circle: import(
|
|
81
|
+
readonly cross_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
82
82
|
title?: string | undefined;
|
|
83
83
|
}>;
|
|
84
|
-
readonly cutlery: import(
|
|
84
|
+
readonly cutlery: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
85
85
|
title?: string | undefined;
|
|
86
86
|
}>;
|
|
87
|
-
readonly drill_tool: import(
|
|
87
|
+
readonly drill_tool: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
88
88
|
title?: string | undefined;
|
|
89
89
|
}>;
|
|
90
|
-
readonly email: import(
|
|
90
|
+
readonly email: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
91
91
|
title?: string | undefined;
|
|
92
92
|
}>;
|
|
93
|
-
readonly envelope: import(
|
|
93
|
+
readonly envelope: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
94
94
|
title?: string | undefined;
|
|
95
95
|
}>;
|
|
96
|
-
readonly event_calendar_check: import(
|
|
96
|
+
readonly event_calendar_check: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
97
97
|
title?: string | undefined;
|
|
98
98
|
}>;
|
|
99
|
-
readonly event_calendar_date: import(
|
|
99
|
+
readonly event_calendar_date: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
100
100
|
title?: string | undefined;
|
|
101
101
|
}>;
|
|
102
|
-
readonly event_calendar_plus: import(
|
|
102
|
+
readonly event_calendar_plus: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
103
103
|
title?: string | undefined;
|
|
104
104
|
}>;
|
|
105
|
-
readonly exchange: import(
|
|
105
|
+
readonly exchange: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
106
106
|
title?: string | undefined;
|
|
107
107
|
}>;
|
|
108
|
-
readonly eye: import(
|
|
108
|
+
readonly eye: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
109
109
|
title?: string | undefined;
|
|
110
110
|
}>;
|
|
111
|
-
readonly eye_crossed: import(
|
|
111
|
+
readonly eye_crossed: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
112
112
|
title?: string | undefined;
|
|
113
113
|
}>;
|
|
114
|
-
readonly gift: import(
|
|
114
|
+
readonly gift: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
115
115
|
title?: string | undefined;
|
|
116
116
|
}>;
|
|
117
|
-
readonly group: import(
|
|
117
|
+
readonly group: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
118
118
|
title?: string | undefined;
|
|
119
119
|
}>;
|
|
120
|
-
readonly healthcare: import(
|
|
120
|
+
readonly healthcare: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
121
121
|
title?: string | undefined;
|
|
122
122
|
}>;
|
|
123
|
-
readonly heart: import(
|
|
123
|
+
readonly heart: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
124
124
|
title?: string | undefined;
|
|
125
125
|
}>;
|
|
126
|
-
readonly house: import(
|
|
126
|
+
readonly house: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
127
127
|
title?: string | undefined;
|
|
128
128
|
}>;
|
|
129
|
-
readonly image: import(
|
|
129
|
+
readonly image: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
130
130
|
title?: string | undefined;
|
|
131
131
|
}>;
|
|
132
|
-
readonly info: import(
|
|
132
|
+
readonly info: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
133
133
|
title?: string | undefined;
|
|
134
134
|
}>;
|
|
135
|
-
readonly invite_neighbour: import(
|
|
135
|
+
readonly invite_neighbour: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
136
136
|
title?: string | undefined;
|
|
137
137
|
}>;
|
|
138
|
-
readonly key: import(
|
|
138
|
+
readonly key: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
139
139
|
title?: string | undefined;
|
|
140
140
|
}>;
|
|
141
|
-
readonly kitchen_pot: import(
|
|
141
|
+
readonly kitchen_pot: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
142
142
|
title?: string | undefined;
|
|
143
143
|
}>;
|
|
144
|
-
readonly list: import(
|
|
144
|
+
readonly list: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
145
145
|
title?: string | undefined;
|
|
146
146
|
}>;
|
|
147
|
-
readonly log_in: import(
|
|
147
|
+
readonly log_in: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
148
148
|
title?: string | undefined;
|
|
149
149
|
}>;
|
|
150
|
-
readonly log_out: import(
|
|
150
|
+
readonly log_out: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
151
151
|
title?: string | undefined;
|
|
152
152
|
}>;
|
|
153
|
-
readonly loudspeaker: import(
|
|
153
|
+
readonly loudspeaker: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
154
154
|
title?: string | undefined;
|
|
155
155
|
}>;
|
|
156
|
-
readonly map: import(
|
|
156
|
+
readonly map: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
157
157
|
title?: string | undefined;
|
|
158
158
|
}>;
|
|
159
|
-
readonly marketplace: import(
|
|
159
|
+
readonly marketplace: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
160
160
|
title?: string | undefined;
|
|
161
161
|
}>;
|
|
162
|
-
readonly miscellaneous_other: import(
|
|
162
|
+
readonly miscellaneous_other: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
163
163
|
title?: string | undefined;
|
|
164
164
|
}>;
|
|
165
|
-
readonly more_dots: import(
|
|
165
|
+
readonly more_dots: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
166
166
|
title?: string | undefined;
|
|
167
167
|
}>;
|
|
168
|
-
readonly more_dots_alt: import(
|
|
168
|
+
readonly more_dots_alt: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
169
169
|
title?: string | undefined;
|
|
170
170
|
}>;
|
|
171
|
-
readonly music: import(
|
|
171
|
+
readonly music: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
172
172
|
title?: string | undefined;
|
|
173
173
|
}>;
|
|
174
|
-
readonly nebenan_de: import(
|
|
174
|
+
readonly nebenan_de: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
175
175
|
title?: string | undefined;
|
|
176
176
|
}>;
|
|
177
|
-
readonly neighbour: import(
|
|
177
|
+
readonly neighbour: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
178
178
|
title?: string | undefined;
|
|
179
179
|
}>;
|
|
180
|
-
readonly notification_bell: import(
|
|
180
|
+
readonly notification_bell: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
181
181
|
title?: string | undefined;
|
|
182
182
|
}>;
|
|
183
|
-
readonly organisation: import(
|
|
183
|
+
readonly organisation: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
184
184
|
title?: string | undefined;
|
|
185
185
|
}>;
|
|
186
|
-
readonly paper_form_empty: import(
|
|
186
|
+
readonly paper_form_empty: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
187
187
|
title?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
-
readonly paper_form_filled: import(
|
|
189
|
+
readonly paper_form_filled: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
190
190
|
title?: string | undefined;
|
|
191
191
|
}>;
|
|
192
|
-
readonly paperclip: import(
|
|
192
|
+
readonly paperclip: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
193
193
|
title?: string | undefined;
|
|
194
194
|
}>;
|
|
195
|
-
readonly paw: import(
|
|
195
|
+
readonly paw: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
196
196
|
title?: string | undefined;
|
|
197
197
|
}>;
|
|
198
|
-
readonly pencil: import(
|
|
198
|
+
readonly pencil: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
199
199
|
title?: string | undefined;
|
|
200
200
|
}>;
|
|
201
|
-
readonly pin: import(
|
|
201
|
+
readonly pin: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
202
202
|
title?: string | undefined;
|
|
203
203
|
}>;
|
|
204
|
-
readonly pins: import(
|
|
204
|
+
readonly pins: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
205
205
|
title?: string | undefined;
|
|
206
206
|
}>;
|
|
207
|
-
readonly plant: import(
|
|
207
|
+
readonly plant: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
208
208
|
title?: string | undefined;
|
|
209
209
|
}>;
|
|
210
|
-
readonly plus: import(
|
|
210
|
+
readonly plus: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
211
211
|
title?: string | undefined;
|
|
212
212
|
}>;
|
|
213
|
-
readonly plus_circle: import(
|
|
213
|
+
readonly plus_circle: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
214
214
|
title?: string | undefined;
|
|
215
215
|
}>;
|
|
216
|
-
readonly post: import(
|
|
216
|
+
readonly post: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
217
217
|
title?: string | undefined;
|
|
218
218
|
}>;
|
|
219
|
-
readonly privacy_lock: import(
|
|
219
|
+
readonly privacy_lock: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
220
220
|
title?: string | undefined;
|
|
221
221
|
}>;
|
|
222
|
-
readonly qr_code: import(
|
|
222
|
+
readonly qr_code: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
223
223
|
title?: string | undefined;
|
|
224
224
|
}>;
|
|
225
|
-
readonly search: import(
|
|
225
|
+
readonly search: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
226
226
|
title?: string | undefined;
|
|
227
227
|
}>;
|
|
228
|
-
readonly settings_cog: import(
|
|
228
|
+
readonly settings_cog: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
229
229
|
title?: string | undefined;
|
|
230
230
|
}>;
|
|
231
|
-
readonly shopping_bag: import(
|
|
231
|
+
readonly shopping_bag: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
232
232
|
title?: string | undefined;
|
|
233
233
|
}>;
|
|
234
|
-
readonly shopping_cart: import(
|
|
234
|
+
readonly shopping_cart: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
235
235
|
title?: string | undefined;
|
|
236
236
|
}>;
|
|
237
|
-
readonly special_place: import(
|
|
237
|
+
readonly special_place: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
238
238
|
title?: string | undefined;
|
|
239
239
|
}>;
|
|
240
|
-
readonly suitcase: import(
|
|
240
|
+
readonly suitcase: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
241
241
|
title?: string | undefined;
|
|
242
242
|
}>;
|
|
243
|
-
readonly supporter: import(
|
|
243
|
+
readonly supporter: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
244
244
|
title?: string | undefined;
|
|
245
245
|
}>;
|
|
246
|
-
readonly tennis_ball: import(
|
|
246
|
+
readonly tennis_ball: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
247
247
|
title?: string | undefined;
|
|
248
248
|
}>;
|
|
249
|
-
readonly thanks: import(
|
|
249
|
+
readonly thanks: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
250
250
|
title?: string | undefined;
|
|
251
251
|
}>;
|
|
252
|
-
readonly trash_can: import(
|
|
252
|
+
readonly trash_can: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
253
253
|
title?: string | undefined;
|
|
254
254
|
}>;
|
|
255
|
-
readonly truck: import(
|
|
255
|
+
readonly truck: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
256
256
|
title?: string | undefined;
|
|
257
257
|
}>;
|
|
258
|
-
readonly user: import(
|
|
258
|
+
readonly user: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
259
259
|
title?: string | undefined;
|
|
260
260
|
}>;
|
|
261
|
-
readonly user_profile: import(
|
|
261
|
+
readonly user_profile: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
262
262
|
title?: string | undefined;
|
|
263
263
|
}>;
|
|
264
|
-
readonly wellness: import(
|
|
264
|
+
readonly wellness: import('react').FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
265
265
|
title?: string | undefined;
|
|
266
266
|
}>;
|
|
267
267
|
};
|