@goodhood-web/ui 2.1.0-development.8 → 3.0.0-development.1

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 (63) hide show
  1. package/index.d.ts +9 -5
  2. package/index.js +125 -125
  3. package/index.mjs +19204 -19049
  4. package/lib/Atoms/Badges/Badge/Badge.types.d.ts +2 -3
  5. package/lib/Atoms/Badges/BadgeIcon/BadgeIcon.types.d.ts +2 -1
  6. package/lib/Atoms/Badges/BadgeLabel/BadgeLabel.types.d.ts +1 -1
  7. package/lib/Atoms/Badges/Tooltip/Tooltip.d.ts +1 -1
  8. package/lib/Atoms/Badges/Tooltip/Tooltip.types.d.ts +1 -0
  9. package/lib/Atoms/Buttons/Button/Button.d.ts +2 -2
  10. package/lib/Atoms/Buttons/Button/Button.types.d.ts +1 -1
  11. package/lib/Atoms/Buttons/ButtonTertiary/ButtonTertiary.types.d.ts +1 -1
  12. package/lib/Atoms/Buttons/IconButton/IconButton.d.ts +1 -1
  13. package/lib/Atoms/Buttons/IconButton/IconButton.types.d.ts +1 -1
  14. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.d.ts +1 -1
  15. package/lib/Atoms/Buttons/OverlayButton/OverlayButton.types.d.ts +1 -0
  16. package/lib/Atoms/Content/BodyText/BodyText.d.ts +1 -1
  17. package/lib/Atoms/Content/BodyText/BodyText.types.d.ts +1 -0
  18. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.d.ts +3 -0
  19. package/lib/Atoms/Content/UserAvatarCluster/UserAvatarCluster.types.d.ts +42 -0
  20. package/lib/Atoms/Content/UserAvatarCluster/utils.d.ts +41 -0
  21. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.d.ts +3 -0
  22. package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.types.d.ts +9 -0
  23. package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +3 -0
  24. package/lib/Atoms/Dropdowns/{DropdownOption/DropdownOption.types.d.ts → DropdownItem/DropdownItem.types.d.ts} +1 -1
  25. package/lib/Base/Icon/Icon.types.d.ts +10 -6
  26. package/lib/Base/Icon/icons/coloured/32x32/index.d.ts +39 -0
  27. package/lib/Base/Icon/icons/coloured/index.d.ts +43 -0
  28. package/lib/Base/Icon/icons/filled/16x16/index.d.ts +9 -0
  29. package/lib/Base/Icon/icons/filled/24x24/index.d.ts +15 -0
  30. package/lib/Base/Icon/icons/filled/32x32/index.d.ts +21 -0
  31. package/lib/Base/Icon/icons/filled/index.d.ts +45 -0
  32. package/lib/Base/Icon/icons/index.d.ts +1081 -516
  33. package/lib/Base/Icon/icons/{16x16 → outline/16x16}/index.d.ts +18 -3
  34. package/lib/Base/Icon/icons/{24x24 → outline/24x24}/index.d.ts +159 -6
  35. package/lib/Base/Icon/icons/{32x32 → outline/32x32}/index.d.ts +336 -27
  36. package/lib/Base/Icon/icons/outline/index.d.ts +999 -0
  37. package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
  38. package/lib/Base/SocialIcon/SocialIcon.types.d.ts +22 -0
  39. package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +159 -0
  40. package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +171 -0
  41. package/lib/Base/SocialIcon/icons/index.d.ts +331 -0
  42. package/lib/Base/Typography/Typography.types.d.ts +2 -1
  43. package/lib/Base/Typography/index.d.ts +3 -0
  44. package/lib/Molecules/ListItemCluster/ListItemCluster.d.ts +3 -0
  45. package/lib/Molecules/ListItemCluster/ListItemCluster.types.d.ts +4 -0
  46. package/lib/Molecules/ListItems/ListItem.d.ts +3 -0
  47. package/lib/Molecules/ListItems/ListItem.types.d.ts +9 -0
  48. package/lib/Molecules/ListItems/Neighbour/Neighbour.d.ts +3 -0
  49. package/lib/Molecules/ListItems/Neighbour/Neighbour.types.d.ts +22 -0
  50. package/lib/Molecules/Markdown/Markdown.d.ts +1 -1
  51. package/lib/Molecules/Markdown/Markdown.types.d.ts +2 -0
  52. package/lib/Molecules/Notices/EmptyState/EmptyState.d.ts +1 -1
  53. package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +1 -0
  54. package/lib/Organisms/Modals/Modal/Modal.d.ts +1 -1
  55. package/lib/Organisms/Modals/Modal/Modal.types.d.ts +1 -1
  56. package/package.json +1 -1
  57. package/style.css +1 -1
  58. package/styles/_media.scss +1 -0
  59. package/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.d.ts +0 -3
  60. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.d.ts +0 -3
  61. package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.types.d.ts +0 -4
  62. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.d.ts +0 -2
  63. package/lib/Organisms/Cards/MarketplaceItemCardless/MarketplaceItemCardless.types.d.ts +0 -12
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { SocialIconProps } from './SocialIcon.types';
3
+ declare const SocialIcon: ({ className, onClick, platform, role, size, style, title, url, }: SocialIconProps) => ReactElement | null;
4
+ export default SocialIcon;
@@ -0,0 +1,22 @@
1
+ import { AriaRole } from 'react';
2
+ import { default as darkIcons48 } from './icons/48x48/dark';
3
+ import { default as lightIcons48 } from './icons/48x48/light';
4
+ export type DarkIcon48 = keyof typeof darkIcons48;
5
+ export type LightIcon48 = keyof typeof lightIcons48;
6
+ export declare const iconNames48Dark: string[];
7
+ export declare const iconNames48Light: string[];
8
+ type BaseIconProps = {
9
+ className?: string;
10
+ onClick?: () => void;
11
+ role?: Extract<AriaRole, 'presentation' | 'img'>;
12
+ size?: '48';
13
+ style?: 'light' | 'dark';
14
+ title?: string;
15
+ url?: string;
16
+ };
17
+ export type SocialIconProps = ({
18
+ platform: DarkIcon48;
19
+ } & BaseIconProps) | ({
20
+ platform: LightIcon48;
21
+ } & BaseIconProps);
22
+ export {};
@@ -0,0 +1,159 @@
1
+ declare const IconsMap: {
2
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
7
+ }>;
8
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
+ title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
13
+ }>;
14
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
+ title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
19
+ }>;
20
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
+ title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
25
+ }>;
26
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
+ title?: string;
28
+ titleId?: string;
29
+ desc?: string;
30
+ descId?: string;
31
+ }>;
32
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
+ title?: string;
34
+ titleId?: string;
35
+ desc?: string;
36
+ descId?: string;
37
+ }>;
38
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
+ title?: string;
40
+ titleId?: string;
41
+ desc?: string;
42
+ descId?: string;
43
+ }>;
44
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
+ title?: string;
46
+ titleId?: string;
47
+ desc?: string;
48
+ descId?: string;
49
+ }>;
50
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
+ title?: string;
52
+ titleId?: string;
53
+ desc?: string;
54
+ descId?: string;
55
+ }>;
56
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
+ title?: string;
58
+ titleId?: string;
59
+ desc?: string;
60
+ descId?: string;
61
+ }>;
62
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
+ title?: string;
64
+ titleId?: string;
65
+ desc?: string;
66
+ descId?: string;
67
+ }>;
68
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
+ title?: string;
70
+ titleId?: string;
71
+ desc?: string;
72
+ descId?: string;
73
+ }>;
74
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
+ title?: string;
76
+ titleId?: string;
77
+ desc?: string;
78
+ descId?: string;
79
+ }>;
80
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
+ title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
85
+ }>;
86
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
87
+ title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
91
+ }>;
92
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
+ title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
97
+ }>;
98
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
+ title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
103
+ }>;
104
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
+ title?: string;
106
+ titleId?: string;
107
+ desc?: string;
108
+ descId?: string;
109
+ }>;
110
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
111
+ title?: string;
112
+ titleId?: string;
113
+ desc?: string;
114
+ descId?: string;
115
+ }>;
116
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
+ title?: string;
118
+ titleId?: string;
119
+ desc?: string;
120
+ descId?: string;
121
+ }>;
122
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
+ title?: string;
124
+ titleId?: string;
125
+ desc?: string;
126
+ descId?: string;
127
+ }>;
128
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
+ title?: string;
130
+ titleId?: string;
131
+ desc?: string;
132
+ descId?: string;
133
+ }>;
134
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
135
+ title?: string;
136
+ titleId?: string;
137
+ desc?: string;
138
+ descId?: string;
139
+ }>;
140
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
+ title?: string;
142
+ titleId?: string;
143
+ desc?: string;
144
+ descId?: string;
145
+ }>;
146
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
+ title?: string;
148
+ titleId?: string;
149
+ desc?: string;
150
+ descId?: string;
151
+ }>;
152
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
+ title?: string;
154
+ titleId?: string;
155
+ desc?: string;
156
+ descId?: string;
157
+ }>;
158
+ };
159
+ export default IconsMap;
@@ -0,0 +1,171 @@
1
+ declare const IconsMap: {
2
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
7
+ }>;
8
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
9
+ title?: string;
10
+ titleId?: string;
11
+ desc?: string;
12
+ descId?: string;
13
+ }>;
14
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
15
+ title?: string;
16
+ titleId?: string;
17
+ desc?: string;
18
+ descId?: string;
19
+ }>;
20
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
21
+ title?: string;
22
+ titleId?: string;
23
+ desc?: string;
24
+ descId?: string;
25
+ }>;
26
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
27
+ title?: string;
28
+ titleId?: string;
29
+ desc?: string;
30
+ descId?: string;
31
+ }>;
32
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
33
+ title?: string;
34
+ titleId?: string;
35
+ desc?: string;
36
+ descId?: string;
37
+ }>;
38
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
39
+ title?: string;
40
+ titleId?: string;
41
+ desc?: string;
42
+ descId?: string;
43
+ }>;
44
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
+ title?: string;
46
+ titleId?: string;
47
+ desc?: string;
48
+ descId?: string;
49
+ }>;
50
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
51
+ title?: string;
52
+ titleId?: string;
53
+ desc?: string;
54
+ descId?: string;
55
+ }>;
56
+ readonly instagram2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
57
+ title?: string;
58
+ titleId?: string;
59
+ desc?: string;
60
+ descId?: string;
61
+ }>;
62
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
63
+ title?: string;
64
+ titleId?: string;
65
+ desc?: string;
66
+ descId?: string;
67
+ }>;
68
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
69
+ title?: string;
70
+ titleId?: string;
71
+ desc?: string;
72
+ descId?: string;
73
+ }>;
74
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
75
+ title?: string;
76
+ titleId?: string;
77
+ desc?: string;
78
+ descId?: string;
79
+ }>;
80
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
81
+ title?: string;
82
+ titleId?: string;
83
+ desc?: string;
84
+ descId?: string;
85
+ }>;
86
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
87
+ title?: string;
88
+ titleId?: string;
89
+ desc?: string;
90
+ descId?: string;
91
+ }>;
92
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
+ title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
97
+ }>;
98
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
+ title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
103
+ }>;
104
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
+ title?: string;
106
+ titleId?: string;
107
+ desc?: string;
108
+ descId?: string;
109
+ }>;
110
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
111
+ title?: string;
112
+ titleId?: string;
113
+ desc?: string;
114
+ descId?: string;
115
+ }>;
116
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
+ title?: string;
118
+ titleId?: string;
119
+ desc?: string;
120
+ descId?: string;
121
+ }>;
122
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
123
+ title?: string;
124
+ titleId?: string;
125
+ desc?: string;
126
+ descId?: string;
127
+ }>;
128
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
129
+ title?: string;
130
+ titleId?: string;
131
+ desc?: string;
132
+ descId?: string;
133
+ }>;
134
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
135
+ title?: string;
136
+ titleId?: string;
137
+ desc?: string;
138
+ descId?: string;
139
+ }>;
140
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
+ title?: string;
142
+ titleId?: string;
143
+ desc?: string;
144
+ descId?: string;
145
+ }>;
146
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
147
+ title?: string;
148
+ titleId?: string;
149
+ desc?: string;
150
+ descId?: string;
151
+ }>;
152
+ readonly whatsapp2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
153
+ title?: string;
154
+ titleId?: string;
155
+ desc?: string;
156
+ descId?: string;
157
+ }>;
158
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
159
+ title?: string;
160
+ titleId?: string;
161
+ desc?: string;
162
+ descId?: string;
163
+ }>;
164
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
165
+ title?: string;
166
+ titleId?: string;
167
+ desc?: string;
168
+ descId?: string;
169
+ }>;
170
+ };
171
+ export default IconsMap;
@@ -0,0 +1,331 @@
1
+ declare const iconsMap: {
2
+ dark48: {
3
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
4
+ title?: string;
5
+ titleId?: string;
6
+ desc?: string;
7
+ descId?: string;
8
+ }>;
9
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
10
+ title?: string;
11
+ titleId?: string;
12
+ desc?: string;
13
+ descId?: string;
14
+ }>;
15
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
16
+ title?: string;
17
+ titleId?: string;
18
+ desc?: string;
19
+ descId?: string;
20
+ }>;
21
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
22
+ title?: string;
23
+ titleId?: string;
24
+ desc?: string;
25
+ descId?: string;
26
+ }>;
27
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
28
+ title?: string;
29
+ titleId?: string;
30
+ desc?: string;
31
+ descId?: string;
32
+ }>;
33
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
34
+ title?: string;
35
+ titleId?: string;
36
+ desc?: string;
37
+ descId?: string;
38
+ }>;
39
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
40
+ title?: string;
41
+ titleId?: string;
42
+ desc?: string;
43
+ descId?: string;
44
+ }>;
45
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
46
+ title?: string;
47
+ titleId?: string;
48
+ desc?: string;
49
+ descId?: string;
50
+ }>;
51
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
52
+ title?: string;
53
+ titleId?: string;
54
+ desc?: string;
55
+ descId?: string;
56
+ }>;
57
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
58
+ title?: string;
59
+ titleId?: string;
60
+ desc?: string;
61
+ descId?: string;
62
+ }>;
63
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
64
+ title?: string;
65
+ titleId?: string;
66
+ desc?: string;
67
+ descId?: string;
68
+ }>;
69
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
70
+ title?: string;
71
+ titleId?: string;
72
+ desc?: string;
73
+ descId?: string;
74
+ }>;
75
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
76
+ title?: string;
77
+ titleId?: string;
78
+ desc?: string;
79
+ descId?: string;
80
+ }>;
81
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
82
+ title?: string;
83
+ titleId?: string;
84
+ desc?: string;
85
+ descId?: string;
86
+ }>;
87
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
88
+ title?: string;
89
+ titleId?: string;
90
+ desc?: string;
91
+ descId?: string;
92
+ }>;
93
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
94
+ title?: string;
95
+ titleId?: string;
96
+ desc?: string;
97
+ descId?: string;
98
+ }>;
99
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
100
+ title?: string;
101
+ titleId?: string;
102
+ desc?: string;
103
+ descId?: string;
104
+ }>;
105
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
106
+ title?: string;
107
+ titleId?: string;
108
+ desc?: string;
109
+ descId?: string;
110
+ }>;
111
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
112
+ title?: string;
113
+ titleId?: string;
114
+ desc?: string;
115
+ descId?: string;
116
+ }>;
117
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
118
+ title?: string;
119
+ titleId?: string;
120
+ desc?: string;
121
+ descId?: string;
122
+ }>;
123
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
124
+ title?: string;
125
+ titleId?: string;
126
+ desc?: string;
127
+ descId?: string;
128
+ }>;
129
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
130
+ title?: string;
131
+ titleId?: string;
132
+ desc?: string;
133
+ descId?: string;
134
+ }>;
135
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
136
+ title?: string;
137
+ titleId?: string;
138
+ desc?: string;
139
+ descId?: string;
140
+ }>;
141
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
142
+ title?: string;
143
+ titleId?: string;
144
+ desc?: string;
145
+ descId?: string;
146
+ }>;
147
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
148
+ title?: string;
149
+ titleId?: string;
150
+ desc?: string;
151
+ descId?: string;
152
+ }>;
153
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
154
+ title?: string;
155
+ titleId?: string;
156
+ desc?: string;
157
+ descId?: string;
158
+ }>;
159
+ };
160
+ light48: {
161
+ readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
162
+ title?: string;
163
+ titleId?: string;
164
+ desc?: string;
165
+ descId?: string;
166
+ }>;
167
+ readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
168
+ title?: string;
169
+ titleId?: string;
170
+ desc?: string;
171
+ descId?: string;
172
+ }>;
173
+ readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
174
+ title?: string;
175
+ titleId?: string;
176
+ desc?: string;
177
+ descId?: string;
178
+ }>;
179
+ readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
180
+ title?: string;
181
+ titleId?: string;
182
+ desc?: string;
183
+ descId?: string;
184
+ }>;
185
+ readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
186
+ title?: string;
187
+ titleId?: string;
188
+ desc?: string;
189
+ descId?: string;
190
+ }>;
191
+ readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
192
+ title?: string;
193
+ titleId?: string;
194
+ desc?: string;
195
+ descId?: string;
196
+ }>;
197
+ readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
198
+ title?: string;
199
+ titleId?: string;
200
+ desc?: string;
201
+ descId?: string;
202
+ }>;
203
+ readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
204
+ title?: string;
205
+ titleId?: string;
206
+ desc?: string;
207
+ descId?: string;
208
+ }>;
209
+ readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
210
+ title?: string;
211
+ titleId?: string;
212
+ desc?: string;
213
+ descId?: string;
214
+ }>;
215
+ readonly instagram2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
216
+ title?: string;
217
+ titleId?: string;
218
+ desc?: string;
219
+ descId?: string;
220
+ }>;
221
+ readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
222
+ title?: string;
223
+ titleId?: string;
224
+ desc?: string;
225
+ descId?: string;
226
+ }>;
227
+ readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
228
+ title?: string;
229
+ titleId?: string;
230
+ desc?: string;
231
+ descId?: string;
232
+ }>;
233
+ readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
234
+ title?: string;
235
+ titleId?: string;
236
+ desc?: string;
237
+ descId?: string;
238
+ }>;
239
+ readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
240
+ title?: string;
241
+ titleId?: string;
242
+ desc?: string;
243
+ descId?: string;
244
+ }>;
245
+ readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
246
+ title?: string;
247
+ titleId?: string;
248
+ desc?: string;
249
+ descId?: string;
250
+ }>;
251
+ readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
252
+ title?: string;
253
+ titleId?: string;
254
+ desc?: string;
255
+ descId?: string;
256
+ }>;
257
+ readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
258
+ title?: string;
259
+ titleId?: string;
260
+ desc?: string;
261
+ descId?: string;
262
+ }>;
263
+ readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
264
+ title?: string;
265
+ titleId?: string;
266
+ desc?: string;
267
+ descId?: string;
268
+ }>;
269
+ readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
270
+ title?: string;
271
+ titleId?: string;
272
+ desc?: string;
273
+ descId?: string;
274
+ }>;
275
+ readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
276
+ title?: string;
277
+ titleId?: string;
278
+ desc?: string;
279
+ descId?: string;
280
+ }>;
281
+ readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
282
+ title?: string;
283
+ titleId?: string;
284
+ desc?: string;
285
+ descId?: string;
286
+ }>;
287
+ readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
288
+ title?: string;
289
+ titleId?: string;
290
+ desc?: string;
291
+ descId?: string;
292
+ }>;
293
+ readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
294
+ title?: string;
295
+ titleId?: string;
296
+ desc?: string;
297
+ descId?: string;
298
+ }>;
299
+ readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
300
+ title?: string;
301
+ titleId?: string;
302
+ desc?: string;
303
+ descId?: string;
304
+ }>;
305
+ readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
306
+ title?: string;
307
+ titleId?: string;
308
+ desc?: string;
309
+ descId?: string;
310
+ }>;
311
+ readonly whatsapp2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
312
+ title?: string;
313
+ titleId?: string;
314
+ desc?: string;
315
+ descId?: string;
316
+ }>;
317
+ readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
318
+ title?: string;
319
+ titleId?: string;
320
+ desc?: string;
321
+ descId?: string;
322
+ }>;
323
+ readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
324
+ title?: string;
325
+ titleId?: string;
326
+ desc?: string;
327
+ descId?: string;
328
+ }>;
329
+ };
330
+ };
331
+ export default iconsMap;