@goodhood-web/ui 2.1.0-development.3 → 2.1.0-development.30
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 +8 -4
- package/index.js +124 -124
- package/index.mjs +19359 -19164
- 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 +2 -0
- package/lib/Atoms/Buttons/Button/Button.d.ts +2 -2
- package/lib/Atoms/Buttons/Button/Button.types.d.ts +1 -1
- package/lib/Atoms/Buttons/IconButton/IconButton.d.ts +1 -1
- package/lib/Atoms/Buttons/IconButton/IconButton.types.d.ts +1 -1
- package/lib/Atoms/Buttons/OverlayButton/OverlayButton.d.ts +1 -1
- package/lib/Atoms/Buttons/OverlayButton/OverlayButton.types.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/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 +1081 -492
- package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +18 -3
- package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +159 -12
- package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +360 -21
- package/lib/Base/Icon/icons/outline/index.d.ts +999 -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 +1 -1
- 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 +22 -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/package.json +1 -1
- package/style.css +1 -1
- package/styles/_media.scss +6 -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, 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;
|
|
@@ -2,8 +2,10 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
export default interface TooltipProps {
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
className?: string;
|
|
5
|
+
customSpacing?: string;
|
|
5
6
|
hasPointer?: boolean;
|
|
6
7
|
id: string;
|
|
7
8
|
position?: 'top' | 'bottom';
|
|
9
|
+
showTooltip?: boolean;
|
|
8
10
|
text: string | ReactNode;
|
|
9
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare
|
|
1
|
+
import { LinkProps } from './Button.types';
|
|
2
|
+
declare const Button: import('react').ForwardRefExoticComponent<(Omit<import('./Button.types').BaseButtonProps, "ref"> | Omit<LinkProps, "ref">) & import('react').RefAttributes<HTMLButtonElement>>;
|
|
3
3
|
export default Button;
|
|
@@ -16,7 +16,7 @@ export interface BaseButtonProps extends ButtonOwnProps, CommonProps {
|
|
|
16
16
|
onClick: (event: MouseEvent<HTMLElement>) => void;
|
|
17
17
|
}
|
|
18
18
|
export interface LinkProps extends CommonProps {
|
|
19
|
-
children
|
|
19
|
+
children?: ReactNode;
|
|
20
20
|
href?: string;
|
|
21
21
|
onClick?: (event: MouseEvent<HTMLElement>) => void;
|
|
22
22
|
rel?: string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { IconButtonProps } from './IconButton.types';
|
|
2
|
-
declare const IconButton: (
|
|
2
|
+
declare const IconButton: import('react').ForwardRefExoticComponent<IconButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
|
|
3
3
|
export default IconButton;
|
|
@@ -9,7 +9,7 @@ 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
14
|
export type IconButtonIcon24Props = {
|
|
15
15
|
icon: Icon24;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { OverlayButtonTypes } from './OverlayButton.types';
|
|
2
|
-
export default function OverlayButton({ iconSelected, iconUnselected, selected, ...props }: OverlayButtonTypes): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export default function OverlayButton({ iconClassName, iconSelected, iconUnselected, selected, ...props }: OverlayButtonTypes): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Icon24 } from '../../../Base/Icon/Icon.types';
|
|
2
2
|
import { ButtonProps } from '../Button/Button.types';
|
|
3
3
|
export interface OverlayButtonTypes extends Omit<ButtonProps, 'children'> {
|
|
4
|
+
iconClassName?: string;
|
|
4
5
|
iconSelected: Icon24;
|
|
5
6
|
iconUnselected: Icon24;
|
|
6
7
|
selected?: boolean;
|
|
@@ -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;
|