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