@goodhood-web/ui 1.6.0-development.1 → 1.6.0-development.10
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 +1 -2
- package/index.js +35 -34
- package/index.mjs +1952 -1959
- package/lib/Button/Button.types.d.ts +1 -1
- package/lib/ButtonPrimary/ButtonPrimary.types.d.ts +2 -2
- package/lib/Card/CardHeader/CardHeader.type.d.ts +1 -2
- package/lib/Icon/icons/24x24/index.d.ts +43 -43
- package/lib/Icon/icons/32x32/index.d.ts +93 -90
- package/lib/Icon/icons/index.d.ts +136 -133
- package/lib/Markdown/Markdown.d.ts +1 -1
- package/lib/MenuItem/MenuItem.types.d.ts +3 -3
- package/lib/Modal/Backdrop/Backdrop.d.ts +1 -2
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.type.d.ts +2 -1
- package/lib/Popup/Popup.d.ts +1 -1
- package/lib/Popup/Popup.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/BaseButton/BaseButton.d.ts +0 -18
|
@@ -16,7 +16,7 @@ export interface BaseButtonProps extends ButtonOwnProps, CommonProps {
|
|
|
16
16
|
export interface LinkProps extends CommonProps {
|
|
17
17
|
children: ReactNode;
|
|
18
18
|
href?: string;
|
|
19
|
-
onClick?: (event
|
|
19
|
+
onClick?: (event: MouseEvent<HTMLElement>) => void;
|
|
20
20
|
rel?: string;
|
|
21
21
|
target?: string;
|
|
22
22
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ButtonProps } from '../Button/Button.types';
|
|
2
|
-
import {
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
3
|
|
|
4
4
|
export interface ButtonPrimaryProps extends Omit<ButtonProps, 'children'> {
|
|
5
|
-
children?:
|
|
5
|
+
children?: ReactNode;
|
|
6
6
|
color?: 'highlight' | 'primary' | 'transparent';
|
|
7
7
|
loading?: boolean;
|
|
8
8
|
size?: 'tiny' | 'small' | 'medium' | 'large';
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { TypographyProps } from '../../Typography/Typography.types';
|
|
2
2
|
import { IconButtonProps } from '../../IconButton/IconButton.types';
|
|
3
3
|
import { IconProps } from '../../Icon/Icon.types';
|
|
4
|
-
import { BaseButtonProps } from '../../BaseButton/BaseButton';
|
|
5
4
|
import { ReactElement } from 'react';
|
|
6
5
|
|
|
7
6
|
export type CardHeaderProps = {
|
|
@@ -9,6 +8,6 @@ export type CardHeaderProps = {
|
|
|
9
8
|
className?: string;
|
|
10
9
|
headline: string;
|
|
11
10
|
leftElement?: ReactElement<IconProps | IconButtonProps>;
|
|
12
|
-
rightElement?: ReactElement<
|
|
11
|
+
rightElement?: ReactElement<IconButtonProps>;
|
|
13
12
|
type?: Exclude<TypographyProps['type'], 'h1'>;
|
|
14
13
|
};
|
|
@@ -1,132 +1,132 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const IconsMap: {
|
|
3
|
-
readonly arrow_left: import('react').FunctionComponent<import(
|
|
3
|
+
readonly arrow_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
4
4
|
title?: string | undefined;
|
|
5
5
|
}>;
|
|
6
|
-
readonly arrow_right: import('react').FunctionComponent<import(
|
|
6
|
+
readonly arrow_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
7
7
|
title?: string | undefined;
|
|
8
8
|
}>;
|
|
9
|
-
readonly bookmark: import('react').FunctionComponent<import(
|
|
9
|
+
readonly bookmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
10
10
|
title?: string | undefined;
|
|
11
11
|
}>;
|
|
12
|
-
readonly bookmarked: import('react').FunctionComponent<import(
|
|
12
|
+
readonly bookmarked: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
13
13
|
title?: string | undefined;
|
|
14
14
|
}>;
|
|
15
|
-
readonly burger_menu: import('react').FunctionComponent<import(
|
|
15
|
+
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
16
16
|
title?: string | undefined;
|
|
17
17
|
}>;
|
|
18
|
-
readonly camera: import('react').FunctionComponent<import(
|
|
18
|
+
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
19
19
|
title?: string | undefined;
|
|
20
20
|
}>;
|
|
21
|
-
readonly checkmark: import('react').FunctionComponent<import(
|
|
21
|
+
readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
22
22
|
title?: string | undefined;
|
|
23
23
|
}>;
|
|
24
|
-
readonly checkmark_circle: import('react').FunctionComponent<import(
|
|
24
|
+
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
25
25
|
title?: string | undefined;
|
|
26
26
|
}>;
|
|
27
|
-
readonly chevron_down: import('react').FunctionComponent<import(
|
|
27
|
+
readonly chevron_down: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
28
28
|
title?: string | undefined;
|
|
29
29
|
}>;
|
|
30
|
-
readonly chevron_left: import('react').FunctionComponent<import(
|
|
30
|
+
readonly chevron_left: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
31
31
|
title?: string | undefined;
|
|
32
32
|
}>;
|
|
33
|
-
readonly chevron_right: import('react').FunctionComponent<import(
|
|
33
|
+
readonly chevron_right: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
34
34
|
title?: string | undefined;
|
|
35
35
|
}>;
|
|
36
|
-
readonly chevron_up: import('react').FunctionComponent<import(
|
|
36
|
+
readonly chevron_up: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
37
37
|
title?: string | undefined;
|
|
38
38
|
}>;
|
|
39
|
-
readonly comment_bubble: import('react').FunctionComponent<import(
|
|
39
|
+
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
40
40
|
title?: string | undefined;
|
|
41
41
|
}>;
|
|
42
|
-
readonly cross: import('react').FunctionComponent<import(
|
|
42
|
+
readonly cross: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
43
43
|
title?: string | undefined;
|
|
44
44
|
}>;
|
|
45
|
-
readonly cross_circle: import('react').FunctionComponent<import(
|
|
45
|
+
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
46
46
|
title?: string | undefined;
|
|
47
47
|
}>;
|
|
48
|
-
readonly envelope: import('react').FunctionComponent<import(
|
|
48
|
+
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
49
49
|
title?: string | undefined;
|
|
50
50
|
}>;
|
|
51
|
-
readonly event_calendar: import('react').FunctionComponent<import(
|
|
51
|
+
readonly event_calendar: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
52
52
|
title?: string | undefined;
|
|
53
53
|
}>;
|
|
54
|
-
readonly external_link: import('react').FunctionComponent<import(
|
|
54
|
+
readonly external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
55
55
|
title?: string | undefined;
|
|
56
56
|
}>;
|
|
57
|
-
readonly eye: import('react').FunctionComponent<import(
|
|
57
|
+
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
58
58
|
title?: string | undefined;
|
|
59
59
|
}>;
|
|
60
|
-
readonly eye_crossed: import('react').FunctionComponent<import(
|
|
60
|
+
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
61
61
|
title?: string | undefined;
|
|
62
62
|
}>;
|
|
63
|
-
readonly filter: import('react').FunctionComponent<import(
|
|
63
|
+
readonly filter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
64
64
|
title?: string | undefined;
|
|
65
65
|
}>;
|
|
66
|
-
readonly globe: import('react').FunctionComponent<import(
|
|
66
|
+
readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
67
67
|
title?: string | undefined;
|
|
68
68
|
}>;
|
|
69
|
-
readonly heart: import('react').FunctionComponent<import(
|
|
69
|
+
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
70
70
|
title?: string | undefined;
|
|
71
71
|
}>;
|
|
72
|
-
readonly image: import('react').FunctionComponent<import(
|
|
72
|
+
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
73
73
|
title?: string | undefined;
|
|
74
74
|
}>;
|
|
75
|
-
readonly loudspeaker: import('react').FunctionComponent<import(
|
|
75
|
+
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
76
76
|
title?: string | undefined;
|
|
77
77
|
}>;
|
|
78
|
-
readonly marketplace: import('react').FunctionComponent<import(
|
|
78
|
+
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
79
79
|
title?: string | undefined;
|
|
80
80
|
}>;
|
|
81
|
-
readonly more_dots: import('react').FunctionComponent<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('react').FunctionComponent<import(
|
|
84
|
+
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
85
85
|
title?: string | undefined;
|
|
86
86
|
}>;
|
|
87
|
-
readonly mute: import('react').FunctionComponent<import(
|
|
87
|
+
readonly mute: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
88
88
|
title?: string | undefined;
|
|
89
89
|
}>;
|
|
90
|
-
readonly notification_bell: import('react').FunctionComponent<import(
|
|
90
|
+
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
91
91
|
title?: string | undefined;
|
|
92
92
|
}>;
|
|
93
|
-
readonly paperclip: import('react').FunctionComponent<import(
|
|
93
|
+
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
94
94
|
title?: string | undefined;
|
|
95
95
|
}>;
|
|
96
|
-
readonly pencil: import('react').FunctionComponent<import(
|
|
96
|
+
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
97
97
|
title?: string | undefined;
|
|
98
98
|
}>;
|
|
99
|
-
readonly pin: import('react').FunctionComponent<import(
|
|
99
|
+
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
100
100
|
title?: string | undefined;
|
|
101
101
|
}>;
|
|
102
|
-
readonly plus: import('react').FunctionComponent<import(
|
|
102
|
+
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
103
103
|
title?: string | undefined;
|
|
104
104
|
}>;
|
|
105
|
-
readonly plus_circle: import('react').FunctionComponent<import(
|
|
105
|
+
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
106
106
|
title?: string | undefined;
|
|
107
107
|
}>;
|
|
108
|
-
readonly privacy_lock: import('react').FunctionComponent<import(
|
|
108
|
+
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
109
109
|
title?: string | undefined;
|
|
110
110
|
}>;
|
|
111
|
-
readonly privacy_lock_closed: import('react').FunctionComponent<import(
|
|
111
|
+
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
112
112
|
title?: string | undefined;
|
|
113
113
|
}>;
|
|
114
|
-
readonly search: import('react').FunctionComponent<import(
|
|
114
|
+
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
115
115
|
title?: string | undefined;
|
|
116
116
|
}>;
|
|
117
|
-
readonly share_arrow: import('react').FunctionComponent<import(
|
|
117
|
+
readonly share_arrow: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
118
118
|
title?: string | undefined;
|
|
119
119
|
}>;
|
|
120
|
-
readonly share_arrow_outline: import('react').FunctionComponent<import(
|
|
120
|
+
readonly share_arrow_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
121
121
|
title?: string | undefined;
|
|
122
122
|
}>;
|
|
123
|
-
readonly sort: import('react').FunctionComponent<import(
|
|
123
|
+
readonly sort: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
124
124
|
title?: string | undefined;
|
|
125
125
|
}>;
|
|
126
|
-
readonly thanks: import('react').FunctionComponent<import(
|
|
126
|
+
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
127
127
|
title?: string | undefined;
|
|
128
128
|
}>;
|
|
129
|
-
readonly trash_can: import('react').FunctionComponent<import(
|
|
129
|
+
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
130
130
|
title?: string | undefined;
|
|
131
131
|
}>;
|
|
132
132
|
};
|
|
@@ -1,273 +1,276 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const IconsMap: {
|
|
3
|
-
readonly address_book: import('react').FunctionComponent<import(
|
|
3
|
+
readonly address_book: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
4
4
|
title?: string | undefined;
|
|
5
5
|
}>;
|
|
6
|
-
readonly baby_toy: import('react').FunctionComponent<import(
|
|
6
|
+
readonly baby_toy: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
7
7
|
title?: string | undefined;
|
|
8
8
|
}>;
|
|
9
|
-
readonly bicycle: import('react').FunctionComponent<import(
|
|
9
|
+
readonly bicycle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
10
10
|
title?: string | undefined;
|
|
11
11
|
}>;
|
|
12
|
-
readonly bookmark: import('react').FunctionComponent<import(
|
|
12
|
+
readonly bookmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
13
13
|
title?: string | undefined;
|
|
14
14
|
}>;
|
|
15
|
-
readonly books: import('react').FunctionComponent<import(
|
|
15
|
+
readonly books: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
16
16
|
title?: string | undefined;
|
|
17
17
|
}>;
|
|
18
|
-
readonly bubble_heart_filled: import('react').FunctionComponent<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('react').FunctionComponent<import(
|
|
21
|
+
readonly bubble_heart_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
22
22
|
title?: string | undefined;
|
|
23
23
|
}>;
|
|
24
|
-
readonly buildings: import('react').FunctionComponent<import(
|
|
24
|
+
readonly buildings: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
25
25
|
title?: string | undefined;
|
|
26
26
|
}>;
|
|
27
|
-
readonly burger_menu: import('react').FunctionComponent<import(
|
|
27
|
+
readonly burger_menu: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
28
28
|
title?: string | undefined;
|
|
29
29
|
}>;
|
|
30
|
-
readonly business: import('react').FunctionComponent<import(
|
|
30
|
+
readonly business: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
31
31
|
title?: string | undefined;
|
|
32
32
|
}>;
|
|
33
|
-
readonly business_profile: import('react').FunctionComponent<import(
|
|
33
|
+
readonly business_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
34
34
|
title?: string | undefined;
|
|
35
35
|
}>;
|
|
36
|
-
readonly camera: import('react').FunctionComponent<import(
|
|
36
|
+
readonly camera: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
37
37
|
title?: string | undefined;
|
|
38
38
|
}>;
|
|
39
|
-
readonly camera_crossed: import('react').FunctionComponent<import(
|
|
39
|
+
readonly camera_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
40
40
|
title?: string | undefined;
|
|
41
41
|
}>;
|
|
42
|
-
readonly car: import('react').FunctionComponent<import(
|
|
42
|
+
readonly car: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
43
43
|
title?: string | undefined;
|
|
44
44
|
}>;
|
|
45
|
-
readonly carrot: import('react').FunctionComponent<import(
|
|
45
|
+
readonly carrot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
46
46
|
title?: string | undefined;
|
|
47
47
|
}>;
|
|
48
|
-
readonly chat: import('react').FunctionComponent<import(
|
|
48
|
+
readonly chat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
49
49
|
title?: string | undefined;
|
|
50
50
|
}>;
|
|
51
|
-
readonly checkmark_circle: import('react').FunctionComponent<import(
|
|
51
|
+
readonly checkmark_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
52
52
|
title?: string | undefined;
|
|
53
53
|
}>;
|
|
54
|
-
readonly christmas_tree: import('react').FunctionComponent<import(
|
|
54
|
+
readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
55
55
|
title?: string | undefined;
|
|
56
56
|
}>;
|
|
57
|
-
readonly clipboard: import('react').FunctionComponent<import(
|
|
57
|
+
readonly clipboard: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
58
58
|
title?: string | undefined;
|
|
59
59
|
}>;
|
|
60
|
-
readonly clothing: import('react').FunctionComponent<import(
|
|
60
|
+
readonly clothing: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
61
61
|
title?: string | undefined;
|
|
62
62
|
}>;
|
|
63
|
-
readonly cocktail: import('react').FunctionComponent<import(
|
|
63
|
+
readonly cocktail: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
64
64
|
title?: string | undefined;
|
|
65
65
|
}>;
|
|
66
|
-
readonly comment_bubble: import('react').FunctionComponent<import(
|
|
66
|
+
readonly comment_bubble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
67
67
|
title?: string | undefined;
|
|
68
68
|
}>;
|
|
69
|
-
readonly compass: import('react').FunctionComponent<import(
|
|
69
|
+
readonly compass: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
70
70
|
title?: string | undefined;
|
|
71
71
|
}>;
|
|
72
|
-
readonly computer: import('react').FunctionComponent<import(
|
|
72
|
+
readonly computer: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
73
73
|
title?: string | undefined;
|
|
74
74
|
}>;
|
|
75
|
-
readonly couch: import('react').FunctionComponent<import(
|
|
75
|
+
readonly couch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
76
76
|
title?: string | undefined;
|
|
77
77
|
}>;
|
|
78
|
-
readonly credit_card: import('react').FunctionComponent<import(
|
|
78
|
+
readonly credit_card: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
79
79
|
title?: string | undefined;
|
|
80
80
|
}>;
|
|
81
|
-
readonly cross_circle: import('react').FunctionComponent<import(
|
|
81
|
+
readonly cross_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
82
82
|
title?: string | undefined;
|
|
83
83
|
}>;
|
|
84
|
-
readonly cutlery: import('react').FunctionComponent<import(
|
|
84
|
+
readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
85
85
|
title?: string | undefined;
|
|
86
86
|
}>;
|
|
87
|
-
readonly drill_tool: import('react').FunctionComponent<import(
|
|
87
|
+
readonly drill_tool: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
88
88
|
title?: string | undefined;
|
|
89
89
|
}>;
|
|
90
|
-
readonly email: import('react').FunctionComponent<import(
|
|
90
|
+
readonly email: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
91
91
|
title?: string | undefined;
|
|
92
92
|
}>;
|
|
93
|
-
readonly envelope: import('react').FunctionComponent<import(
|
|
93
|
+
readonly envelope: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
94
94
|
title?: string | undefined;
|
|
95
95
|
}>;
|
|
96
|
-
readonly event_calendar_check: import('react').FunctionComponent<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('react').FunctionComponent<import(
|
|
99
|
+
readonly event_calendar_date: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
100
100
|
title?: string | undefined;
|
|
101
101
|
}>;
|
|
102
|
-
readonly event_calendar_grid: import('react').FunctionComponent<import(
|
|
102
|
+
readonly event_calendar_grid: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
103
103
|
title?: string | undefined;
|
|
104
104
|
}>;
|
|
105
|
-
readonly event_calendar_plus: import('react').FunctionComponent<import(
|
|
105
|
+
readonly event_calendar_plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
106
106
|
title?: string | undefined;
|
|
107
107
|
}>;
|
|
108
|
-
readonly exchange: import('react').FunctionComponent<import(
|
|
108
|
+
readonly exchange: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
109
109
|
title?: string | undefined;
|
|
110
110
|
}>;
|
|
111
|
-
readonly eye: import('react').FunctionComponent<import(
|
|
111
|
+
readonly eye: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
112
112
|
title?: string | undefined;
|
|
113
113
|
}>;
|
|
114
|
-
readonly eye_crossed: import('react').FunctionComponent<import(
|
|
114
|
+
readonly eye_crossed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
115
115
|
title?: string | undefined;
|
|
116
116
|
}>;
|
|
117
|
-
readonly gift: import('react').FunctionComponent<import(
|
|
117
|
+
readonly gift: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
118
118
|
title?: string | undefined;
|
|
119
119
|
}>;
|
|
120
|
-
readonly group: import('react').FunctionComponent<import(
|
|
120
|
+
readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
121
121
|
title?: string | undefined;
|
|
122
122
|
}>;
|
|
123
|
-
readonly healthcare: import('react').FunctionComponent<import(
|
|
123
|
+
readonly healthcare: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
124
124
|
title?: string | undefined;
|
|
125
125
|
}>;
|
|
126
|
-
readonly heart: import('react').FunctionComponent<import(
|
|
126
|
+
readonly heart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
127
127
|
title?: string | undefined;
|
|
128
128
|
}>;
|
|
129
|
-
readonly house: import('react').FunctionComponent<import(
|
|
129
|
+
readonly house: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
130
130
|
title?: string | undefined;
|
|
131
131
|
}>;
|
|
132
|
-
readonly image: import('react').FunctionComponent<import(
|
|
132
|
+
readonly image: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
133
133
|
title?: string | undefined;
|
|
134
134
|
}>;
|
|
135
|
-
readonly info: import('react').FunctionComponent<import(
|
|
135
|
+
readonly info: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
136
136
|
title?: string | undefined;
|
|
137
137
|
}>;
|
|
138
|
-
readonly invite_neighbour: import('react').FunctionComponent<import(
|
|
138
|
+
readonly invite_neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
139
139
|
title?: string | undefined;
|
|
140
140
|
}>;
|
|
141
|
-
readonly key: import('react').FunctionComponent<import(
|
|
141
|
+
readonly key: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
142
142
|
title?: string | undefined;
|
|
143
143
|
}>;
|
|
144
|
-
readonly kitchen_pot: import('react').FunctionComponent<import(
|
|
144
|
+
readonly kitchen_pot: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
145
145
|
title?: string | undefined;
|
|
146
146
|
}>;
|
|
147
|
-
readonly list: import('react').FunctionComponent<import(
|
|
147
|
+
readonly list: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
148
148
|
title?: string | undefined;
|
|
149
149
|
}>;
|
|
150
|
-
readonly log_in: import('react').FunctionComponent<import(
|
|
150
|
+
readonly log_in: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
151
151
|
title?: string | undefined;
|
|
152
152
|
}>;
|
|
153
|
-
readonly log_out: import('react').FunctionComponent<import(
|
|
153
|
+
readonly log_out: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
154
154
|
title?: string | undefined;
|
|
155
155
|
}>;
|
|
156
|
-
readonly loudspeaker: import('react').FunctionComponent<import(
|
|
156
|
+
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
157
157
|
title?: string | undefined;
|
|
158
158
|
}>;
|
|
159
|
-
readonly map: import('react').FunctionComponent<import(
|
|
159
|
+
readonly map: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
160
160
|
title?: string | undefined;
|
|
161
161
|
}>;
|
|
162
|
-
readonly marketplace: import('react').FunctionComponent<import(
|
|
162
|
+
readonly marketplace: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
163
163
|
title?: string | undefined;
|
|
164
164
|
}>;
|
|
165
|
-
readonly miscellaneous_other: import('react').FunctionComponent<import(
|
|
165
|
+
readonly miscellaneous_other: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
166
166
|
title?: string | undefined;
|
|
167
167
|
}>;
|
|
168
|
-
readonly more_dots: import('react').FunctionComponent<import(
|
|
168
|
+
readonly more_dots: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
169
169
|
title?: string | undefined;
|
|
170
170
|
}>;
|
|
171
|
-
readonly more_dots_alt: import('react').FunctionComponent<import(
|
|
171
|
+
readonly more_dots_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
172
172
|
title?: string | undefined;
|
|
173
173
|
}>;
|
|
174
|
-
readonly
|
|
174
|
+
readonly more_dots_outline: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
175
175
|
title?: string | undefined;
|
|
176
176
|
}>;
|
|
177
|
-
readonly
|
|
177
|
+
readonly music: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
178
178
|
title?: string | undefined;
|
|
179
179
|
}>;
|
|
180
|
-
readonly
|
|
180
|
+
readonly nebenan_de: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
181
181
|
title?: string | undefined;
|
|
182
182
|
}>;
|
|
183
|
-
readonly
|
|
183
|
+
readonly neighbour: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
184
184
|
title?: string | undefined;
|
|
185
185
|
}>;
|
|
186
|
-
readonly
|
|
186
|
+
readonly notification_bell: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
187
187
|
title?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
-
readonly
|
|
189
|
+
readonly organisation: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
190
190
|
title?: string | undefined;
|
|
191
191
|
}>;
|
|
192
|
-
readonly
|
|
192
|
+
readonly paper_form_empty: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
193
193
|
title?: string | undefined;
|
|
194
194
|
}>;
|
|
195
|
-
readonly
|
|
195
|
+
readonly paper_form_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
196
196
|
title?: string | undefined;
|
|
197
197
|
}>;
|
|
198
|
-
readonly
|
|
198
|
+
readonly paperclip: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
199
199
|
title?: string | undefined;
|
|
200
200
|
}>;
|
|
201
|
-
readonly
|
|
201
|
+
readonly paw: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
202
202
|
title?: string | undefined;
|
|
203
203
|
}>;
|
|
204
|
-
readonly
|
|
204
|
+
readonly pencil: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
205
205
|
title?: string | undefined;
|
|
206
206
|
}>;
|
|
207
|
-
readonly
|
|
207
|
+
readonly pin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
208
208
|
title?: string | undefined;
|
|
209
209
|
}>;
|
|
210
|
-
readonly
|
|
210
|
+
readonly pins: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
211
211
|
title?: string | undefined;
|
|
212
212
|
}>;
|
|
213
|
-
readonly
|
|
213
|
+
readonly plant: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
214
214
|
title?: string | undefined;
|
|
215
215
|
}>;
|
|
216
|
-
readonly
|
|
216
|
+
readonly plus: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
217
217
|
title?: string | undefined;
|
|
218
218
|
}>;
|
|
219
|
-
readonly
|
|
219
|
+
readonly plus_circle: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
220
220
|
title?: string | undefined;
|
|
221
221
|
}>;
|
|
222
|
-
readonly
|
|
222
|
+
readonly post: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
223
223
|
title?: string | undefined;
|
|
224
224
|
}>;
|
|
225
|
-
readonly
|
|
225
|
+
readonly privacy_lock: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
226
226
|
title?: string | undefined;
|
|
227
227
|
}>;
|
|
228
|
-
readonly
|
|
228
|
+
readonly privacy_lock_closed: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
229
229
|
title?: string | undefined;
|
|
230
230
|
}>;
|
|
231
|
-
readonly
|
|
231
|
+
readonly qr_code: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
232
232
|
title?: string | undefined;
|
|
233
233
|
}>;
|
|
234
|
-
readonly
|
|
234
|
+
readonly search: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
235
235
|
title?: string | undefined;
|
|
236
236
|
}>;
|
|
237
|
-
readonly
|
|
237
|
+
readonly settings_cog: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
238
238
|
title?: string | undefined;
|
|
239
239
|
}>;
|
|
240
|
-
readonly
|
|
240
|
+
readonly shopping_bag: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
241
241
|
title?: string | undefined;
|
|
242
242
|
}>;
|
|
243
|
-
readonly
|
|
243
|
+
readonly shopping_cart: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
244
244
|
title?: string | undefined;
|
|
245
245
|
}>;
|
|
246
|
-
readonly
|
|
246
|
+
readonly special_place: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
247
247
|
title?: string | undefined;
|
|
248
248
|
}>;
|
|
249
|
-
readonly
|
|
249
|
+
readonly suitcase: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
250
250
|
title?: string | undefined;
|
|
251
251
|
}>;
|
|
252
|
-
readonly
|
|
252
|
+
readonly supporter: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
253
253
|
title?: string | undefined;
|
|
254
254
|
}>;
|
|
255
|
-
readonly
|
|
255
|
+
readonly tennis_ball: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
256
256
|
title?: string | undefined;
|
|
257
257
|
}>;
|
|
258
|
-
readonly
|
|
258
|
+
readonly thanks: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
259
259
|
title?: string | undefined;
|
|
260
260
|
}>;
|
|
261
|
-
readonly
|
|
261
|
+
readonly trash_can: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
262
262
|
title?: string | undefined;
|
|
263
263
|
}>;
|
|
264
|
-
readonly
|
|
264
|
+
readonly truck: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
265
265
|
title?: string | undefined;
|
|
266
266
|
}>;
|
|
267
|
-
readonly
|
|
267
|
+
readonly user: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
268
268
|
title?: string | undefined;
|
|
269
269
|
}>;
|
|
270
|
-
readonly
|
|
270
|
+
readonly user_profile: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
271
|
+
title?: string | undefined;
|
|
272
|
+
}>;
|
|
273
|
+
readonly wellness: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
271
274
|
title?: string | undefined;
|
|
272
275
|
}>;
|
|
273
276
|
};
|