@goodhood-web/ui 3.3.0-next.1 → 3.3.0

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.
Files changed (45) hide show
  1. package/index.d.ts +9 -1
  2. package/index.js +77 -78
  3. package/index.mjs +8474 -8051
  4. package/lib/Atoms/AccordionItem/AccordionItem.d.ts +1 -1
  5. package/lib/Atoms/AccordionItem/AccordionItem.types.d.ts +3 -0
  6. package/lib/Atoms/Badges/Sticker/Sticker.d.ts +1 -1
  7. package/lib/Atoms/Badges/Sticker/Sticker.types.d.ts +10 -4
  8. package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.d.ts +3 -0
  9. package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.types.d.ts +7 -0
  10. package/lib/Atoms/Buttons/TextButton/TextButton.d.ts +1 -1
  11. package/lib/Atoms/Buttons/TextButton/TextButton.types.d.ts +2 -1
  12. package/lib/Atoms/Buttons/Tiles/ContentCreatorTile/ContentCreatorTile.d.ts +3 -0
  13. package/lib/Atoms/Buttons/Tiles/ContentCreatorTile/ContentCreatorTile.types.d.ts +11 -0
  14. package/lib/Atoms/Content/List/List.d.ts +3 -0
  15. package/lib/Atoms/Content/List/List.types.d.ts +22 -0
  16. package/lib/Atoms/Content/PoiAvatar/PoiAvatar.d.ts +1 -1
  17. package/lib/Atoms/Content/PoiAvatar/PoiAvatar.type.d.ts +2 -0
  18. package/lib/Atoms/Content/Thumbnail/Thumbnail.d.ts +1 -1
  19. package/lib/Atoms/Content/Thumbnail/Thumbnail.type.d.ts +2 -0
  20. package/lib/Atoms/Content/UserAvatar/UserAvatar.types.d.ts +2 -2
  21. package/lib/Atoms/Divider/Divider.types.d.ts +1 -1
  22. package/lib/Atoms/Image/Image.d.ts +1 -1
  23. package/lib/Atoms/Image/Image.type.d.ts +3 -0
  24. package/lib/Atoms/Inputs/TextAreaInput/TextAreaInput.d.ts +1 -1
  25. package/lib/Atoms/Inputs/TextAreaInput/TextAreaInput.types.d.ts +1 -0
  26. package/lib/Atoms/Inputs/TextInput/TextInput.d.ts +1 -1
  27. package/lib/Atoms/Inputs/TextInput/TextInput.types.d.ts +19 -5
  28. package/lib/Atoms/Progress/ProgressBar/ProgressBar.d.ts +1 -1
  29. package/lib/Atoms/Progress/ProgressBar/ProgressBar.types.d.ts +2 -0
  30. package/lib/Base/FlagIcon/FlagIcon.d.ts +3 -0
  31. package/lib/Base/FlagIcon/FlagIcon.types.d.ts +6 -0
  32. package/lib/Base/FlagIcon/icons/index.d.ts +164 -0
  33. package/lib/Base/Icon/icons/index.d.ts +42 -0
  34. package/lib/Base/Icon/icons/outline/16x16/index.d.ts +6 -0
  35. package/lib/Base/Icon/icons/outline/24x24/index.d.ts +6 -0
  36. package/lib/Base/Icon/icons/outline/32x32/index.d.ts +30 -0
  37. package/lib/Base/Icon/icons/outline/index.d.ts +42 -0
  38. package/lib/Base/Typography/Typography.types.d.ts +1 -0
  39. package/lib/Molecules/Card/CardHeader/CardHeader.types.d.ts +1 -1
  40. package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +4 -1
  41. package/lib/Organisms/Modals/BottomSheet/BottomSheet.d.ts +1 -1
  42. package/lib/Organisms/Modals/BottomSheet/BottomSheet.types.d.ts +1 -0
  43. package/package.json +1 -1
  44. package/style.css +1 -1
  45. package/styles/_media.scss +4 -2
@@ -1,3 +1,3 @@
1
1
  import { AccordionItemProps } from './AccordionItem.types';
2
- declare const AccordionItem: ({ accordionBtnClassName, accordionPanelClassName, children, id, size, title, }: AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const AccordionItem: ({ accordionBtnClassName, accordionPanelClassName, children, handleClick, hideBorder, id, opened, size, title, }: AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default AccordionItem;
@@ -3,7 +3,10 @@ export type AccordionItemProps = {
3
3
  accordionBtnClassName?: string;
4
4
  accordionPanelClassName?: string;
5
5
  children: ReactNode;
6
+ handleClick?: () => void;
7
+ hideBorder?: boolean;
6
8
  id: number | string;
9
+ opened?: boolean;
7
10
  size?: 'small' | 'large';
8
11
  title: string;
9
12
  };
@@ -1,3 +1,3 @@
1
1
  import { StickerProps } from './Sticker.types';
2
- declare const Sticker: ({ color, icon, size }: StickerProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Sticker: ({ className, color, icon, size, value }: StickerProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default Sticker;
@@ -1,6 +1,12 @@
1
1
  import { Icon32 } from '../../../Base/Icon/Icon.types';
2
- export interface StickerProps {
3
- color: 'green' | 'pink' | 'lavender' | 'teal' | 'orange' | 'grey' | 'lightGrey';
4
- icon: Icon32;
2
+ export type StickerProps = {
3
+ className?: string;
4
+ color: 'green' | 'pink' | 'lavender' | 'teal' | 'orange' | 'grey' | 'lightGrey' | 'darkGrey';
5
5
  size: 'small' | 'medium' | 'large';
6
- }
6
+ } & ({
7
+ icon?: never;
8
+ value: number;
9
+ } | {
10
+ icon: Icon32;
11
+ value?: never;
12
+ });
@@ -0,0 +1,3 @@
1
+ import { ButtonGoogleSSOProps } from './ButtonGoogleSSO.types';
2
+ declare const ButtonGoogleSSO: ({ onError, onSuccess, size, text, trackClick, }: ButtonGoogleSSOProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ButtonGoogleSSO;
@@ -0,0 +1,7 @@
1
+ export interface ButtonGoogleSSOProps {
2
+ onError?: (error: string) => void;
3
+ onSuccess: (credential: string) => Promise<void>;
4
+ size: 'large' | 'medium' | 'small';
5
+ text: string;
6
+ trackClick?: () => void;
7
+ }
@@ -6,5 +6,5 @@ export declare const typographyType: {
6
6
  small: string;
7
7
  tiny: string;
8
8
  };
9
- export declare function TextButton({ className, color, disabled, leftIcon, rightIcon, size, text, ...props }: TextButtonProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function TextButton({ className, color, disabled, inline, leftIcon, rightIcon, size, text, ...props }: TextButtonProps): import("react/jsx-runtime").JSX.Element;
10
10
  export default TextButton;
@@ -4,7 +4,8 @@ import { NotificationBubbleProps } from '../../NotificationBubble/NotificationBu
4
4
  import { ButtonProps } from '../Button/Button.types';
5
5
  export interface TextButtonProps extends Omit<ButtonProps, 'role' | 'className'> {
6
6
  className?: string;
7
- color: 'green' | 'blue' | 'deepPurple' | 'pinkLight' | 'pinkDark';
7
+ color: 'green' | 'blue' | 'deepPurple' | 'pinkLight' | 'pinkDark' | 'default';
8
+ inline?: boolean;
8
9
  leftIcon?: ReactElement<IconProps | NotificationBubbleProps>;
9
10
  rightIcon?: ReactElement<IconProps | NotificationBubbleProps>;
10
11
  size: 'large' | 'medium' | 'small' | 'link' | 'tiny';
@@ -0,0 +1,3 @@
1
+ import { ContentCreatorTileProps } from './ContentCreatorTile.types';
2
+ declare const ContentCreatorTile: ({ description, headline, isActive, isPending, onClick, selected, sticker, }: ContentCreatorTileProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ContentCreatorTile;
@@ -0,0 +1,11 @@
1
+ import { StickerProps } from '../../../Badges/Sticker/Sticker.types';
2
+ import { BaseButtonProps } from '../../Button/Button.types';
3
+ export interface ContentCreatorTileProps {
4
+ description?: string;
5
+ headline: string;
6
+ isActive: boolean;
7
+ isPending?: boolean;
8
+ onClick?: BaseButtonProps['onClick'];
9
+ selected?: boolean;
10
+ sticker: StickerProps;
11
+ }
@@ -0,0 +1,3 @@
1
+ import { ListProps } from './List.types';
2
+ declare const List: ({ className, items }: ListProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default List;
@@ -0,0 +1,22 @@
1
+ import { StickerProps } from '../../Badges/Sticker/Sticker.types';
2
+ export type ListProps = {
3
+ className?: string;
4
+ items: ListItemProps[];
5
+ };
6
+ type AllowedTitleAs = 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
7
+ export type ListItemProps = {
8
+ size: 'medium' | 'large';
9
+ } & Omit<StickerProps, 'className'> & ({
10
+ text: string;
11
+ title?: undefined;
12
+ titleAs?: never;
13
+ } | {
14
+ text?: undefined;
15
+ title: string;
16
+ titleAs?: AllowedTitleAs;
17
+ } | {
18
+ text: string;
19
+ title: string;
20
+ titleAs?: AllowedTitleAs;
21
+ });
22
+ export {};
@@ -1,3 +1,3 @@
1
1
  import { PoiAvatarType } from './PoiAvatar.type';
2
- export declare const PoiAvatar: ({ size, type }: PoiAvatarType) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const PoiAvatar: ({ alt, imageSrc, size, type }: PoiAvatarType) => import("react/jsx-runtime").JSX.Element;
3
3
  export default PoiAvatar;
@@ -1,6 +1,8 @@
1
1
  export declare const poiAvatarSizes: readonly ["48", "56", "64", "80"];
2
2
  export type TSize = (typeof poiAvatarSizes)[number];
3
3
  export interface PoiAvatarType {
4
+ alt?: string;
5
+ imageSrc?: string;
4
6
  size: TSize;
5
7
  type: 'business' | 'special_place' | 'organisation';
6
8
  }
@@ -1,3 +1,3 @@
1
1
  import { ThumbnailCircularProps, ThumbnailSquareProps } from './Thumbnail.type';
2
- declare const Thumbnail: ({ alt, children, className, isPlaceholder, shape, size, src, }: ThumbnailCircularProps | ThumbnailSquareProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Thumbnail: ({ alt, children, className, isPlaceholder, outline, shape, size, src, }: ThumbnailCircularProps | ThumbnailSquareProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default Thumbnail;
@@ -11,10 +11,12 @@ export declare const squareSizes: readonly ["24", "32", "40", "48", "56", "64",
11
11
  export type TCircularSize = (typeof circularSizes)[number];
12
12
  export type TSquareSize = (typeof squareSizes)[number];
13
13
  export interface ThumbnailCircularProps extends ThumbnailProps {
14
+ outline?: never;
14
15
  shape: 'circular';
15
16
  size: TCircularSize;
16
17
  }
17
18
  export interface ThumbnailSquareProps extends ThumbnailProps {
19
+ outline?: 'none' | 'highlight';
18
20
  shape: 'square';
19
21
  size: TSquareSize;
20
22
  }
@@ -6,12 +6,12 @@ type BaseUserAvatarProps = {
6
6
  userImageSrc?: string;
7
7
  };
8
8
  type UserIdMandatory = BaseUserAvatarProps & {
9
- avatarColor?: AvatarColor;
9
+ avatarColor?: never;
10
10
  userId: number;
11
11
  };
12
12
  type AvatarColorMandatory = BaseUserAvatarProps & {
13
13
  avatarColor: AvatarColor;
14
- userId?: number;
14
+ userId?: never;
15
15
  };
16
16
  export type UserAvatarProps = UserIdMandatory | AvatarColorMandatory;
17
17
  export {};
@@ -1,4 +1,4 @@
1
- type OffsetType = 0 | 8 | 16;
1
+ type OffsetType = 0 | 8 | 12 | 16;
2
2
  export interface DividerProps {
3
3
  offsetLeft?: OffsetType;
4
4
  offsetRight?: OffsetType;
@@ -1,3 +1,3 @@
1
1
  import { ImageProps } from './Image.type';
2
- declare const Image: ({ alt, className, src }: ImageProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Image: ({ alt, className, height, loading, src, width }: ImageProps) => import("react/jsx-runtime").JSX.Element | null;
3
3
  export default Image;
@@ -1,5 +1,8 @@
1
1
  export interface ImageProps {
2
2
  alt: string;
3
3
  className?: string;
4
+ height?: number;
5
+ loading?: 'lazy' | 'eager';
4
6
  src: string;
7
+ width?: number;
5
8
  }
@@ -1,3 +1,3 @@
1
1
  import { TextAreaInputProps } from './TextAreaInput.types';
2
- declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, name, ref, showInputHints, size, ...props }: TextAreaInputProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const TextAreaInput: ({ ariaDescribedby, attachment, charLimit, colorScheme, errorText, hintText, id, label, limitCharInput, name, ref, showInputHints, size, ...props }: TextAreaInputProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default TextAreaInput;
@@ -2,5 +2,6 @@ import { IconButtonIcon24Props } from '../../Buttons/IconButton/IconButton.types
2
2
  import { CommonTextInputProps } from '../TextInput/TextInput.types';
3
3
  export interface TextAreaInputProps extends CommonTextInputProps {
4
4
  attachment?: Pick<IconButtonIcon24Props, 'icon' | 'onClick' | 'ariaLabel' | 'disabled'>[];
5
+ ref?: React.RefObject<HTMLTextAreaElement>;
5
6
  size: 'medium' | 'large';
6
7
  }
@@ -1,3 +1,3 @@
1
1
  import { TextInputProps } from './TextInput.types';
2
- declare const TextInput: ({ ariaDescribedby, ariaExpanded, charLimit, colorScheme, errorText, hintText, icon, iconButton, id, inputFieldType, label, name, onClick, onKeyDown, readonly, ref, role, showInputHints, size, ...props }: TextInputProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const TextInput: import('react').ForwardRefExoticComponent<TextInputProps & import('react').RefAttributes<HTMLInputElement>>;
3
3
  export default TextInput;
@@ -1,30 +1,44 @@
1
1
  import { UseInputParameters } from '@mui/base';
2
2
  import { ForwardedRef, HTMLInputTypeAttribute, KeyboardEventHandler } from 'react';
3
+ import { CountryCode } from '../../../Base/FlagIcon/FlagIcon.types';
3
4
  import { IconProps } from '../../../Base/Icon/Icon.types';
4
- import { IconButtonIcon24Props } from '../../Buttons/IconButton/IconButton.types';
5
+ import { IconButtonIcon16Props, IconButtonIcon24Props } from '../../Buttons/IconButton/IconButton.types';
5
6
  export interface CommonTextInputProps extends UseInputParameters {
7
+ ariaActivedescendant?: string;
8
+ ariaAutocomplete?: 'none' | 'inline' | 'list' | 'both' | undefined;
9
+ ariaControls?: string;
6
10
  ariaDescribedby?: string;
7
11
  ariaExpanded?: boolean;
12
+ autoFocus?: boolean;
13
+ autocomplete?: string;
8
14
  charLimit?: number;
9
15
  colorScheme?: 'outline' | 'filled';
10
16
  errorText?: string;
11
17
  hintText?: string;
12
18
  id: string;
13
19
  label: string;
20
+ limitCharInput?: boolean;
14
21
  name?: string;
15
22
  onKeyDown?: KeyboardEventHandler;
23
+ placeholder?: string;
24
+ progressBar?: React.ReactNode;
16
25
  readonly?: boolean;
17
- ref?: ForwardedRef<null>;
18
26
  role?: 'combobox';
19
27
  showInputHints?: boolean;
28
+ wrapperClassName?: string;
20
29
  }
21
30
  export interface TextInputProps extends CommonTextInputProps {
31
+ flagIcon?: CountryCode;
22
32
  icon?: IconProps;
23
- iconButton?: IconButtonIcon24Props & {
33
+ iconButton?: (IconButtonIcon24Props & {
24
34
  ariaExpanded?: boolean;
25
35
  ariaHaspopup?: boolean;
26
36
  ref?: ForwardedRef<null>;
27
- };
37
+ }) | (IconButtonIcon16Props & {
38
+ ariaExpanded?: boolean;
39
+ ariaHaspopup?: boolean;
40
+ ref?: ForwardedRef<null>;
41
+ });
28
42
  inputFieldType?: HTMLInputTypeAttribute;
29
- size: 'medium' | 'large' | 'small';
43
+ size?: 'medium' | 'large' | 'small';
30
44
  }
@@ -1,3 +1,3 @@
1
1
  import { ProgressBarProps } from './ProgressBar.types';
2
- export declare const ProgressBar: ({ progress, steps }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const ProgressBar: ({ className, progress, steps, type, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default ProgressBar;
@@ -1,4 +1,6 @@
1
1
  export type ProgressBarProps = {
2
+ className?: string;
2
3
  progress: number;
3
4
  steps: number;
5
+ type?: 'progress' | 'password';
4
6
  };
@@ -0,0 +1,3 @@
1
+ import { default as FlagIconProps } from './FlagIcon.types';
2
+ declare const FlagIcon: ({ countryCode, disabled }: FlagIconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default FlagIcon;
@@ -0,0 +1,6 @@
1
+ import { IconMap } from './icons';
2
+ export type CountryCode = keyof typeof IconMap;
3
+ export default interface FlagIconProps {
4
+ countryCode: CountryCode;
5
+ disabled?: boolean;
6
+ }
@@ -0,0 +1,164 @@
1
+ export declare const IconMap: {
2
+ AT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
7
+ }>;
8
+ BE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
+ title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
13
+ }>;
14
+ BG: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
+ title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
19
+ }>;
20
+ CY: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
+ title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
25
+ }>;
26
+ CZ: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
+ title?: string;
28
+ titleId?: string;
29
+ desc?: string;
30
+ descId?: string;
31
+ }>;
32
+ DE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
+ title?: string;
34
+ titleId?: string;
35
+ desc?: string;
36
+ descId?: string;
37
+ }>;
38
+ DK: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
+ title?: string;
40
+ titleId?: string;
41
+ desc?: string;
42
+ descId?: string;
43
+ }>;
44
+ EE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
+ title?: string;
46
+ titleId?: string;
47
+ desc?: string;
48
+ descId?: string;
49
+ }>;
50
+ ES: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
+ title?: string;
52
+ titleId?: string;
53
+ desc?: string;
54
+ descId?: string;
55
+ }>;
56
+ FI: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
+ title?: string;
58
+ titleId?: string;
59
+ desc?: string;
60
+ descId?: string;
61
+ }>;
62
+ FR: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
+ title?: string;
64
+ titleId?: string;
65
+ desc?: string;
66
+ descId?: string;
67
+ }>;
68
+ GR: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
+ title?: string;
70
+ titleId?: string;
71
+ desc?: string;
72
+ descId?: string;
73
+ }>;
74
+ HR: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
+ title?: string;
76
+ titleId?: string;
77
+ desc?: string;
78
+ descId?: string;
79
+ }>;
80
+ HU: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
+ title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
85
+ }>;
86
+ IE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
87
+ title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
91
+ }>;
92
+ IT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
+ title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
97
+ }>;
98
+ LT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
+ title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
103
+ }>;
104
+ LU: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
+ title?: string;
106
+ titleId?: string;
107
+ desc?: string;
108
+ descId?: string;
109
+ }>;
110
+ LV: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
111
+ title?: string;
112
+ titleId?: string;
113
+ desc?: string;
114
+ descId?: string;
115
+ }>;
116
+ MT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
+ title?: string;
118
+ titleId?: string;
119
+ desc?: string;
120
+ descId?: string;
121
+ }>;
122
+ NL: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
+ title?: string;
124
+ titleId?: string;
125
+ desc?: string;
126
+ descId?: string;
127
+ }>;
128
+ PL: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
+ title?: string;
130
+ titleId?: string;
131
+ desc?: string;
132
+ descId?: string;
133
+ }>;
134
+ PT: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
135
+ title?: string;
136
+ titleId?: string;
137
+ desc?: string;
138
+ descId?: string;
139
+ }>;
140
+ RO: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
+ title?: string;
142
+ titleId?: string;
143
+ desc?: string;
144
+ descId?: string;
145
+ }>;
146
+ SE: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
+ title?: string;
148
+ titleId?: string;
149
+ desc?: string;
150
+ descId?: string;
151
+ }>;
152
+ SI: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
+ title?: string;
154
+ titleId?: string;
155
+ desc?: string;
156
+ descId?: string;
157
+ }>;
158
+ SK: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
159
+ title?: string;
160
+ titleId?: string;
161
+ desc?: string;
162
+ descId?: string;
163
+ }>;
164
+ };
@@ -111,6 +111,12 @@ declare const iconsMap: {
111
111
  desc?: string;
112
112
  descId?: string;
113
113
  }>;
114
+ cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
115
+ title?: string;
116
+ titleId?: string;
117
+ desc?: string;
118
+ descId?: string;
119
+ }>;
114
120
  external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
115
121
  title?: string;
116
122
  titleId?: string;
@@ -251,6 +257,12 @@ declare const iconsMap: {
251
257
  desc?: string;
252
258
  descId?: string;
253
259
  }>;
260
+ readonly cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
261
+ title?: string;
262
+ titleId?: string;
263
+ desc?: string;
264
+ descId?: string;
265
+ }>;
254
266
  readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
255
267
  title?: string;
256
268
  titleId?: string;
@@ -577,6 +589,12 @@ declare const iconsMap: {
577
589
  desc?: string;
578
590
  descId?: string;
579
591
  }>;
592
+ readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
593
+ title?: string;
594
+ titleId?: string;
595
+ desc?: string;
596
+ descId?: string;
597
+ }>;
580
598
  readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
581
599
  title?: string;
582
600
  titleId?: string;
@@ -649,6 +667,18 @@ declare const iconsMap: {
649
667
  desc?: string;
650
668
  descId?: string;
651
669
  }>;
670
+ readonly cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
671
+ title?: string;
672
+ titleId?: string;
673
+ desc?: string;
674
+ descId?: string;
675
+ }>;
676
+ readonly cursor_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
677
+ title?: string;
678
+ titleId?: string;
679
+ desc?: string;
680
+ descId?: string;
681
+ }>;
652
682
  readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
653
683
  title?: string;
654
684
  titleId?: string;
@@ -955,6 +985,18 @@ declare const iconsMap: {
955
985
  desc?: string;
956
986
  descId?: string;
957
987
  }>;
988
+ readonly percentage: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
989
+ title?: string;
990
+ titleId?: string;
991
+ desc?: string;
992
+ descId?: string;
993
+ }>;
994
+ readonly percentage_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
995
+ title?: string;
996
+ titleId?: string;
997
+ desc?: string;
998
+ descId?: string;
999
+ }>;
958
1000
  readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
959
1001
  title?: string;
960
1002
  titleId?: string;
@@ -23,6 +23,12 @@ declare const IconsMap: {
23
23
  desc?: string;
24
24
  descId?: string;
25
25
  }>;
26
+ cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
+ title?: string;
28
+ titleId?: string;
29
+ desc?: string;
30
+ descId?: string;
31
+ }>;
26
32
  external_link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
33
  title?: string;
28
34
  titleId?: string;
@@ -101,6 +101,12 @@ declare const IconsMap: {
101
101
  desc?: string;
102
102
  descId?: string;
103
103
  }>;
104
+ readonly cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
+ title?: string;
106
+ titleId?: string;
107
+ desc?: string;
108
+ descId?: string;
109
+ }>;
104
110
  readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
111
  title?: string;
106
112
  titleId?: string;
@@ -95,6 +95,12 @@ declare const IconsMap: {
95
95
  desc?: string;
96
96
  descId?: string;
97
97
  }>;
98
+ readonly checkmark: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
+ title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
103
+ }>;
98
104
  readonly christmas_tree: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
105
  title?: string;
100
106
  titleId?: string;
@@ -167,6 +173,18 @@ declare const IconsMap: {
167
173
  desc?: string;
168
174
  descId?: string;
169
175
  }>;
176
+ readonly cursor: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
177
+ title?: string;
178
+ titleId?: string;
179
+ desc?: string;
180
+ descId?: string;
181
+ }>;
182
+ readonly cursor_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
183
+ title?: string;
184
+ titleId?: string;
185
+ desc?: string;
186
+ descId?: string;
187
+ }>;
170
188
  readonly cutlery: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
171
189
  title?: string;
172
190
  titleId?: string;
@@ -473,6 +491,18 @@ declare const IconsMap: {
473
491
  desc?: string;
474
492
  descId?: string;
475
493
  }>;
494
+ readonly percentage: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
495
+ title?: string;
496
+ titleId?: string;
497
+ desc?: string;
498
+ descId?: string;
499
+ }>;
500
+ readonly percentage_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
501
+ title?: string;
502
+ titleId?: string;
503
+ desc?: string;
504
+ descId?: string;
505
+ }>;
476
506
  readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
477
507
  title?: string;
478
508
  titleId?: string;