@goodhood-web/ui 2.1.0-development.9 → 3.0.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 +10 -5
- package/index.js +125 -125
- package/index.mjs +19179 -19011
- package/lib/Atoms/Badges/Badge/Badge.types.d.ts +2 -3
- package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +2 -1
- package/lib/Atoms/Badges/BadgeLabel/BadgeLabel.types.d.ts +1 -1
- package/lib/Atoms/Badges/Tooltip/Tooltip.d.ts +1 -1
- package/lib/Atoms/Badges/Tooltip/Tooltip.types.d.ts +1 -0
- package/lib/Atoms/Buttons/Button/Button.types.d.ts +2 -1
- package/lib/Atoms/Buttons/ButtonTertiary/ButtonTertiary.types.d.ts +1 -1
- package/lib/Atoms/Buttons/IconButton/IconButton.types.d.ts +7 -3
- package/lib/Atoms/Buttons/IconButton/utils.d.ts +2 -2
- package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.d.ts +1 -1
- package/lib/Atoms/Buttons/Tiles/FeedTile/FeedTile.types.d.ts +1 -0
- package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.d.ts +1 -1
- package/lib/Atoms/Buttons/Tiles/MenuTile/MenuTile.type.d.ts +1 -0
- package/lib/Atoms/Content/BodyText/BodyText.d.ts +1 -1
- package/lib/Atoms/Content/BodyText/BodyText.types.d.ts +1 -0
- package/lib/Atoms/Content/GroupAvatar/GroupAvatar.d.ts +3 -0
- package/lib/Atoms/Content/GroupAvatar/GroupAvatar.types.d.ts +10 -0
- package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.d.ts +3 -0
- package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.types.d.ts +42 -0
- package/lib/Atoms/Content/UserAvatarCluster/utils.d.ts +41 -0
- package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.d.ts +3 -0
- package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.types.d.ts +9 -0
- package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +3 -0
- package/lib/Atoms/Dropdowns/{DropdownOption/DropdownOption.types.d.ts → DropdownItem/DropdownItem.types.d.ts} +1 -1
- package/lib/Base/Icon/Icon.types.d.ts +10 -6
- package/lib/Base/Icon/icons/coloured/32x32/index.d.ts +39 -0
- package/lib/Base/Icon/icons/coloured/index.d.ts +43 -0
- package/lib/Base/Icon/icons/filled/16x16/index.d.ts +9 -0
- package/lib/Base/Icon/icons/filled/24x24/index.d.ts +15 -0
- package/lib/Base/Icon/icons/filled/32x32/index.d.ts +21 -0
- package/lib/Base/Icon/icons/filled/index.d.ts +45 -0
- package/lib/Base/Icon/icons/index.d.ts +1105 -516
- package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +29 -2
- package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +171 -6
- package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +336 -27
- package/lib/Base/Icon/icons/outline/index.d.ts +1023 -0
- package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
- package/lib/Base/SocialIcon/SocialIcon.types.d.ts +22 -0
- package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +159 -0
- package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +171 -0
- package/lib/Base/SocialIcon/icons/index.d.ts +331 -0
- package/lib/Base/Typography/Typography.types.d.ts +2 -1
- package/lib/Base/Typography/index.d.ts +3 -0
- package/lib/Molecules/ListItemCluster/ListItemCluster.d.ts +3 -0
- package/lib/Molecules/ListItemCluster/ListItemCluster.types.d.ts +4 -0
- package/lib/Molecules/ListItems/ListItem.d.ts +3 -0
- package/lib/Molecules/ListItems/ListItem.types.d.ts +9 -0
- package/lib/Molecules/ListItems/Neighbour/Neighbour.d.ts +3 -0
- package/lib/Molecules/ListItems/Neighbour/Neighbour.types.d.ts +23 -0
- package/lib/Molecules/Markdown/Markdown.d.ts +1 -1
- package/lib/Molecules/Markdown/Markdown.types.d.ts +2 -0
- package/lib/Molecules/Notices/EmptyState/EmptyState.d.ts +1 -1
- package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +1 -0
- package/lib/Organisms/Modals/Modal/Modal.d.ts +1 -1
- package/lib/Organisms/Modals/Modal/Modal.types.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/_media.scss +1 -0
- package/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.d.ts +0 -3
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.d.ts +0 -3
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.types.d.ts +0 -4
- package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.d.ts +0 -2
- package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.types.d.ts +0 -12
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { BadgeOwnProps } from '@mui/base';
|
|
2
2
|
import { default as BadgeIconProps } from '../BadgeIcon/BadgeIcon.types';
|
|
3
|
-
type
|
|
3
|
+
export type BadgeIconType = BadgeIconProps['type'];
|
|
4
4
|
export interface BadgeProps {
|
|
5
5
|
ariaLabel?: string;
|
|
6
|
-
badgeIcons: [
|
|
6
|
+
badgeIcons: [BadgeIconType] | [BadgeIconType, BadgeIconType] | [BadgeIconType, BadgeIconType, BadgeIconType] | [];
|
|
7
7
|
children: BadgeOwnProps['children'];
|
|
8
8
|
}
|
|
9
|
-
export {};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { AriaRole } from 'react';
|
|
2
|
+
import { BadgeIconType } from '../../../../../../api/src/lib/types/newsFeeds';
|
|
2
3
|
export default interface BadgeIconProps {
|
|
3
4
|
ariaLabel?: string;
|
|
4
5
|
className?: string;
|
|
5
6
|
role?: AriaRole;
|
|
6
7
|
size: 'small' | 'medium';
|
|
7
|
-
type:
|
|
8
|
+
type: BadgeIconType;
|
|
8
9
|
}
|
|
@@ -5,5 +5,5 @@ export default interface BadgeLabelProps {
|
|
|
5
5
|
buttonOnClick: TextButtonProps['onClick'];
|
|
6
6
|
buttonText: string;
|
|
7
7
|
text: string;
|
|
8
|
-
type: Extract<BadgeIconProps['type'], '
|
|
8
|
+
type: Extract<BadgeIconProps['type'], 'is_super_neighbour' | 'is_supporter' | 'muted'>;
|
|
9
9
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as TooltipProps } from './Tooltip.types';
|
|
2
|
-
declare const Tooltip: ({ children, className, hasPointer, id, position, showTooltip, text, }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Tooltip: ({ children, className, customSpacing, hasPointer, id, position, showTooltip, text, }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Tooltip;
|
|
@@ -8,6 +8,7 @@ interface CommonProps {
|
|
|
8
8
|
className?: string;
|
|
9
9
|
'data-testid'?: string;
|
|
10
10
|
disabled?: boolean;
|
|
11
|
+
isToggleButton?: boolean;
|
|
11
12
|
ref?: ForwardedRef<null>;
|
|
12
13
|
role?: AriaRole;
|
|
13
14
|
selected?: boolean;
|
|
@@ -16,7 +17,7 @@ export interface BaseButtonProps extends ButtonOwnProps, CommonProps {
|
|
|
16
17
|
onClick: (event: MouseEvent<HTMLElement>) => void;
|
|
17
18
|
}
|
|
18
19
|
export interface LinkProps extends CommonProps {
|
|
19
|
-
children
|
|
20
|
+
children?: ReactNode;
|
|
20
21
|
href?: string;
|
|
21
22
|
onClick?: (event: MouseEvent<HTMLElement>) => void;
|
|
22
23
|
rel?: string;
|
|
@@ -2,5 +2,5 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { ButtonProps, ButtonVariationProps } from '../Button/Button.types';
|
|
3
3
|
export interface ButtonTertiaryProps extends ButtonVariationProps, Omit<ButtonProps, 'children'> {
|
|
4
4
|
children?: ReactNode;
|
|
5
|
-
color?: 'green' | 'pink' | 'blue' | '
|
|
5
|
+
color?: 'green' | 'pink' | 'blue' | 'grey';
|
|
6
6
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Icon24, Icon32 } from '../../../Base/Icon/Icon.types';
|
|
1
|
+
import { Icon16, Icon24, Icon32 } from '../../../Base/Icon/Icon.types';
|
|
2
2
|
import { ButtonProps } from '../Button/Button.types';
|
|
3
3
|
type BaseIconButtonProps = Omit<ButtonProps, 'children' | 'ref' | 'className'> & ({
|
|
4
4
|
ariaLabel: string;
|
|
@@ -9,8 +9,12 @@ type BaseIconButtonProps = Omit<ButtonProps, 'children' | 'ref' | 'className'> &
|
|
|
9
9
|
iconClassName?: string;
|
|
10
10
|
loading?: boolean;
|
|
11
11
|
type?: 'button' | 'submit' | 'reset';
|
|
12
|
-
variant?: 'green' | 'white';
|
|
12
|
+
variant?: 'green' | 'white' | 'grey';
|
|
13
13
|
};
|
|
14
|
+
export type IconButtonIcon16Props = {
|
|
15
|
+
icon: Icon16;
|
|
16
|
+
size?: 'extraSmall';
|
|
17
|
+
} & BaseIconButtonProps;
|
|
14
18
|
export type IconButtonIcon24Props = {
|
|
15
19
|
icon: Icon24;
|
|
16
20
|
size?: 'small';
|
|
@@ -19,5 +23,5 @@ export type IconButtonIcon32Props = {
|
|
|
19
23
|
icon: Icon32;
|
|
20
24
|
size?: 'medium' | 'large';
|
|
21
25
|
} & BaseIconButtonProps;
|
|
22
|
-
export type IconButtonProps = IconButtonIcon32Props | IconButtonIcon24Props;
|
|
26
|
+
export type IconButtonProps = IconButtonIcon32Props | IconButtonIcon24Props | IconButtonIcon16Props;
|
|
23
27
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
type IconButtonSize = 'large' | 'medium' | 'small';
|
|
2
|
-
export declare const getIconSize: (size: IconButtonSize) => "32" | "24";
|
|
1
|
+
type IconButtonSize = 'large' | 'medium' | 'small' | 'extraSmall';
|
|
2
|
+
export declare const getIconSize: (size: IconButtonSize) => "32" | "24" | "16";
|
|
3
3
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as FeedTileProps } from './FeedTile.types';
|
|
2
|
-
declare const FeedTile: ({ fullWidth, icon, onClick, text }: FeedTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const FeedTile: ({ ariaLabel, fullWidth, icon, onClick, text }: FeedTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default FeedTile;
|
|
@@ -2,6 +2,7 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { Icon32 } from '../../../../Base/Icon/Icon.types';
|
|
3
3
|
import { BaseButtonProps } from '../../../Buttons/Button/Button.types';
|
|
4
4
|
export default interface FeedTileProps {
|
|
5
|
+
ariaLabel?: string;
|
|
5
6
|
fullWidth?: boolean;
|
|
6
7
|
icon: Icon32;
|
|
7
8
|
onClick?: BaseButtonProps['onClick'];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as MenuTileProps } from './MenuTile.type';
|
|
2
|
-
declare const MenuTile: ({ fullWidth, icon, primaryText, secondaryText, ...props }: MenuTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const MenuTile: ({ ariaLabel, fullWidth, icon, primaryText, secondaryText, ...props }: MenuTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default MenuTile;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Icon32 } from '../../../../Base/Icon/Icon.types';
|
|
2
2
|
import { ButtonProps } from '../../Button/Button.types';
|
|
3
3
|
export default interface MenuTileProps extends Omit<ButtonProps, 'children'> {
|
|
4
|
+
ariaLabel?: string;
|
|
4
5
|
fullWidth?: boolean;
|
|
5
6
|
icon?: Icon32;
|
|
6
7
|
primaryText?: string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as BodyTextProps } from './BodyText.types';
|
|
2
|
-
declare const BodyText: ({ bodyText, headlineText, type }: BodyTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const BodyText: ({ bodyText, headlineText, parseContent, type }: BodyTextProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default BodyText;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export type User = {
|
|
2
|
+
achievements: unknown[];
|
|
3
|
+
address: string | null;
|
|
4
|
+
business_profile_id: number | null;
|
|
5
|
+
city: string;
|
|
6
|
+
created_at: string;
|
|
7
|
+
firstname: string;
|
|
8
|
+
hood_access_granted_at: string | null;
|
|
9
|
+
hood_id: number;
|
|
10
|
+
hood_sex_id: number;
|
|
11
|
+
hood_title: string;
|
|
12
|
+
house_number: string | null;
|
|
13
|
+
id: number;
|
|
14
|
+
is_business_user: boolean;
|
|
15
|
+
is_deleted: boolean;
|
|
16
|
+
is_organization_user: boolean;
|
|
17
|
+
is_super_neighbour: boolean;
|
|
18
|
+
is_supporter: boolean;
|
|
19
|
+
lastname: string;
|
|
20
|
+
organization_profile_id: number | null;
|
|
21
|
+
photo_medium_url: string;
|
|
22
|
+
photo_original_url: string;
|
|
23
|
+
photo_thumb_url: string;
|
|
24
|
+
photo_transform_params: Record<string, unknown>;
|
|
25
|
+
photo_updated_at: string;
|
|
26
|
+
photo_url: string;
|
|
27
|
+
profile_type: number;
|
|
28
|
+
salutation_id: number;
|
|
29
|
+
sex_id: number;
|
|
30
|
+
street: string | null;
|
|
31
|
+
successful_invites_count: number;
|
|
32
|
+
user_type: string;
|
|
33
|
+
view_type: string;
|
|
34
|
+
zip_code: string;
|
|
35
|
+
};
|
|
36
|
+
export type UserAvatarClusterProps = {
|
|
37
|
+
maxUsers?: number;
|
|
38
|
+
onAvatarClick?: (userId: number) => void;
|
|
39
|
+
onMoreClick?: () => void;
|
|
40
|
+
size: 'small' | 'medium';
|
|
41
|
+
users: User[];
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare const generateSampleUser: ({ firstname, id, lastname, photo_thumb_url, }: {
|
|
2
|
+
firstname: string;
|
|
3
|
+
id: number;
|
|
4
|
+
lastname: string;
|
|
5
|
+
photo_thumb_url: string;
|
|
6
|
+
}) => {
|
|
7
|
+
achievements: never[];
|
|
8
|
+
address: null;
|
|
9
|
+
business_profile_id: null;
|
|
10
|
+
city: string;
|
|
11
|
+
created_at: string;
|
|
12
|
+
firstname: string;
|
|
13
|
+
hood: null;
|
|
14
|
+
hood_access_granted_at: null;
|
|
15
|
+
hood_id: number;
|
|
16
|
+
hood_sex_id: number;
|
|
17
|
+
hood_title: string;
|
|
18
|
+
house_number: null;
|
|
19
|
+
id: number;
|
|
20
|
+
is_business_user: boolean;
|
|
21
|
+
is_deleted: boolean;
|
|
22
|
+
is_organization_user: boolean;
|
|
23
|
+
is_super_neighbour: boolean;
|
|
24
|
+
is_supporter: boolean;
|
|
25
|
+
lastname: string;
|
|
26
|
+
organization_profile_id: null;
|
|
27
|
+
photo_medium_url: string;
|
|
28
|
+
photo_original_url: string;
|
|
29
|
+
photo_thumb_url: string;
|
|
30
|
+
photo_transform_params: {};
|
|
31
|
+
photo_updated_at: string;
|
|
32
|
+
photo_url: string;
|
|
33
|
+
profile_type: number;
|
|
34
|
+
salutation_id: number;
|
|
35
|
+
sex_id: number;
|
|
36
|
+
street: null;
|
|
37
|
+
successful_invites_count: number;
|
|
38
|
+
user_type: string;
|
|
39
|
+
view_type: string;
|
|
40
|
+
zip_code: string;
|
|
41
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DropdownHeaderProps } from '../DropdownHeader/DropdownHeader.types';
|
|
2
|
+
import { DropdownItemProps } from '../DropdownItem/DropdownItem.types';
|
|
3
|
+
export type DropdownCardProps = {
|
|
4
|
+
className?: string;
|
|
5
|
+
hasHeader?: boolean;
|
|
6
|
+
headerProps?: DropdownHeaderProps;
|
|
7
|
+
items: DropdownItemProps[];
|
|
8
|
+
onClose: () => void;
|
|
9
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonProps } from '../../Buttons/Button/Button.types';
|
|
2
|
-
export type
|
|
2
|
+
export type DropdownItemProps = Pick<ButtonProps, 'onClick' | 'ariaLabel' | 'ariaLabelledBy' | 'disabled' | 'role'> & {
|
|
3
3
|
alt?: string;
|
|
4
4
|
isSelected?: boolean;
|
|
5
5
|
src?: string;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { AriaRole } from 'react';
|
|
2
|
-
import { default as
|
|
3
|
-
import { default as
|
|
4
|
-
import { default as
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
import { default as icons32_coloured } from './icons/coloured/32x32';
|
|
3
|
+
import { default as icons16_filled } from './icons/filled/16x16';
|
|
4
|
+
import { default as icons24_filled } from './icons/filled/24x24';
|
|
5
|
+
import { default as icons32_filled } from './icons/filled/32x32';
|
|
6
|
+
import { default as icons16_outline } from './icons/outline/16x16';
|
|
7
|
+
import { default as icons24_outline } from './icons/outline/24x24';
|
|
8
|
+
import { default as icons32_outline } from './icons/outline/32x32';
|
|
9
|
+
export type Icon32 = keyof typeof icons32_outline | keyof typeof icons32_filled | keyof typeof icons32_coloured;
|
|
10
|
+
export type Icon24 = keyof typeof icons24_outline | keyof typeof icons24_filled;
|
|
11
|
+
export type Icon16 = keyof typeof icons16_outline | keyof typeof icons16_filled;
|
|
8
12
|
export declare const iconNames16: string[];
|
|
9
13
|
export declare const iconNames24: string[];
|
|
10
14
|
export declare const iconNames32: string[];
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const IconsMap: {
|
|
2
|
+
readonly bubble_heart_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
desc?: string;
|
|
6
|
+
descId?: string;
|
|
7
|
+
}>;
|
|
8
|
+
readonly event_calendar_plus_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
+
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
13
|
+
}>;
|
|
14
|
+
readonly gift_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
|
+
title?: string;
|
|
16
|
+
titleId?: string;
|
|
17
|
+
desc?: string;
|
|
18
|
+
descId?: string;
|
|
19
|
+
}>;
|
|
20
|
+
readonly group_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
|
+
title?: string;
|
|
22
|
+
titleId?: string;
|
|
23
|
+
desc?: string;
|
|
24
|
+
descId?: string;
|
|
25
|
+
}>;
|
|
26
|
+
readonly heart_handshake_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
|
+
title?: string;
|
|
28
|
+
titleId?: string;
|
|
29
|
+
desc?: string;
|
|
30
|
+
descId?: string;
|
|
31
|
+
}>;
|
|
32
|
+
readonly supporter_new_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
|
+
title?: string;
|
|
34
|
+
titleId?: string;
|
|
35
|
+
desc?: string;
|
|
36
|
+
descId?: string;
|
|
37
|
+
}>;
|
|
38
|
+
};
|
|
39
|
+
export default IconsMap;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
declare const iconsMap: {
|
|
2
|
+
'16': undefined;
|
|
3
|
+
'24': undefined;
|
|
4
|
+
'32': {
|
|
5
|
+
readonly bubble_heart_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
|
+
title?: string;
|
|
7
|
+
titleId?: string;
|
|
8
|
+
desc?: string;
|
|
9
|
+
descId?: string;
|
|
10
|
+
}>;
|
|
11
|
+
readonly event_calendar_plus_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
|
+
title?: string;
|
|
13
|
+
titleId?: string;
|
|
14
|
+
desc?: string;
|
|
15
|
+
descId?: string;
|
|
16
|
+
}>;
|
|
17
|
+
readonly gift_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
|
+
title?: string;
|
|
19
|
+
titleId?: string;
|
|
20
|
+
desc?: string;
|
|
21
|
+
descId?: string;
|
|
22
|
+
}>;
|
|
23
|
+
readonly group_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
24
|
+
title?: string;
|
|
25
|
+
titleId?: string;
|
|
26
|
+
desc?: string;
|
|
27
|
+
descId?: string;
|
|
28
|
+
}>;
|
|
29
|
+
readonly heart_handshake_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
30
|
+
title?: string;
|
|
31
|
+
titleId?: string;
|
|
32
|
+
desc?: string;
|
|
33
|
+
descId?: string;
|
|
34
|
+
}>;
|
|
35
|
+
readonly supporter_new_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
36
|
+
title?: string;
|
|
37
|
+
titleId?: string;
|
|
38
|
+
desc?: string;
|
|
39
|
+
descId?: string;
|
|
40
|
+
}>;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
export default iconsMap;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const IconsMap: {
|
|
2
|
+
readonly bookmark_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
desc?: string;
|
|
6
|
+
descId?: string;
|
|
7
|
+
}>;
|
|
8
|
+
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
+
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
13
|
+
}>;
|
|
14
|
+
};
|
|
15
|
+
export default IconsMap;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare const IconsMap: {
|
|
2
|
+
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
desc?: string;
|
|
6
|
+
descId?: string;
|
|
7
|
+
}>;
|
|
8
|
+
readonly quotation_left_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
+
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
13
|
+
}>;
|
|
14
|
+
readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
|
+
title?: string;
|
|
16
|
+
titleId?: string;
|
|
17
|
+
desc?: string;
|
|
18
|
+
descId?: string;
|
|
19
|
+
}>;
|
|
20
|
+
};
|
|
21
|
+
export default IconsMap;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const iconsMap: {
|
|
2
|
+
'16': {
|
|
3
|
+
heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
desc?: string;
|
|
7
|
+
descId?: string;
|
|
8
|
+
}>;
|
|
9
|
+
};
|
|
10
|
+
'24': {
|
|
11
|
+
readonly bookmark_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
|
+
title?: string;
|
|
13
|
+
titleId?: string;
|
|
14
|
+
desc?: string;
|
|
15
|
+
descId?: string;
|
|
16
|
+
}>;
|
|
17
|
+
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
|
+
title?: string;
|
|
19
|
+
titleId?: string;
|
|
20
|
+
desc?: string;
|
|
21
|
+
descId?: string;
|
|
22
|
+
}>;
|
|
23
|
+
};
|
|
24
|
+
'32': {
|
|
25
|
+
readonly heart_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
26
|
+
title?: string;
|
|
27
|
+
titleId?: string;
|
|
28
|
+
desc?: string;
|
|
29
|
+
descId?: string;
|
|
30
|
+
}>;
|
|
31
|
+
readonly quotation_left_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
32
|
+
title?: string;
|
|
33
|
+
titleId?: string;
|
|
34
|
+
desc?: string;
|
|
35
|
+
descId?: string;
|
|
36
|
+
}>;
|
|
37
|
+
readonly quotation_right_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
38
|
+
title?: string;
|
|
39
|
+
titleId?: string;
|
|
40
|
+
desc?: string;
|
|
41
|
+
descId?: string;
|
|
42
|
+
}>;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
export default iconsMap;
|