@goodhood-web/ui 2.1.0-development.15 → 2.1.0-development.17
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.js +1 -1
- package/index.mjs +1 -1
- package/lib/Base/SocialIcon/SocialIcon.d.ts +4 -0
- package/lib/Base/SocialIcon/SocialIcon.types.d.ts +20 -0
- package/lib/Base/SocialIcon/icons/48x48/dark/index.d.ts +81 -0
- package/lib/Base/SocialIcon/icons/48x48/light/index.d.ts +87 -0
- package/lib/Base/SocialIcon/icons/index.d.ts +169 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.mjs
CHANGED
|
@@ -22186,7 +22186,7 @@ const ZS = "_inputDetails_usf4a_120", GS = "_inputDetails__hintText_usf4a_126",
|
|
|
22186
22186
|
)) }), BP = (t) => {
|
|
22187
22187
|
const e = ge(RE.actionBar), n = t.type === "list" ? /* @__PURE__ */ A.jsx(OE, { ...t }) : /* @__PURE__ */ A.jsx(IE, { ...t });
|
|
22188
22188
|
return /* @__PURE__ */ A.jsx("div", { className: e, children: n });
|
|
22189
|
-
}, jE = "
|
|
22189
|
+
}, jE = "_root_1ugpz_120", NE = "_thumbnailWrapper_1ugpz_137", $E = "_thumbnail_1ugpz_137", WE = "_iconWrapper_1ugpz_144", HE = "_secondaryThumbnail_1ugpz_155", UE = "_circular_1ugpz_163", zE = "_detail_1ugpz_166", qE = "_title_1ugpz_175", ZE = "_notificationText_1ugpz_180", GE = "_unread_1ugpz_190", YE = "_bubble_1ugpz_198", Er = {
|
|
22190
22190
|
root: jE,
|
|
22191
22191
|
thumbnailWrapper: NE,
|
|
22192
22192
|
thumbnail: $E,
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
role?: Extract<AriaRole, 'presentation' | 'img'>;
|
|
11
|
+
size?: '48';
|
|
12
|
+
style?: 'light' | 'dark';
|
|
13
|
+
title?: string;
|
|
14
|
+
};
|
|
15
|
+
export type IconProps = ({
|
|
16
|
+
platform: DarkIcon48;
|
|
17
|
+
} & BaseIconProps) | ({
|
|
18
|
+
platform: LightIcon48;
|
|
19
|
+
} & BaseIconProps);
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
declare const IconsMap: {
|
|
2
|
+
readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
|
+
title?: string;
|
|
4
|
+
}>;
|
|
5
|
+
readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
|
+
title?: string;
|
|
7
|
+
}>;
|
|
8
|
+
readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
+
title?: string;
|
|
10
|
+
}>;
|
|
11
|
+
readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
|
+
title?: string;
|
|
13
|
+
}>;
|
|
14
|
+
readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
|
+
title?: string;
|
|
16
|
+
}>;
|
|
17
|
+
readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
|
+
title?: string;
|
|
19
|
+
}>;
|
|
20
|
+
readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
|
+
title?: string;
|
|
22
|
+
}>;
|
|
23
|
+
readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
24
|
+
title?: string;
|
|
25
|
+
}>;
|
|
26
|
+
readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
|
+
title?: string;
|
|
28
|
+
}>;
|
|
29
|
+
readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
30
|
+
title?: string;
|
|
31
|
+
}>;
|
|
32
|
+
readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
|
+
title?: string;
|
|
34
|
+
}>;
|
|
35
|
+
readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
36
|
+
title?: string;
|
|
37
|
+
}>;
|
|
38
|
+
readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
39
|
+
title?: string;
|
|
40
|
+
}>;
|
|
41
|
+
readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
42
|
+
title?: string;
|
|
43
|
+
}>;
|
|
44
|
+
readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
45
|
+
title?: string;
|
|
46
|
+
}>;
|
|
47
|
+
readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
48
|
+
title?: string;
|
|
49
|
+
}>;
|
|
50
|
+
readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
51
|
+
title?: string;
|
|
52
|
+
}>;
|
|
53
|
+
readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
54
|
+
title?: string;
|
|
55
|
+
}>;
|
|
56
|
+
readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
57
|
+
title?: string;
|
|
58
|
+
}>;
|
|
59
|
+
readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
60
|
+
title?: string;
|
|
61
|
+
}>;
|
|
62
|
+
readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
63
|
+
title?: string;
|
|
64
|
+
}>;
|
|
65
|
+
readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
66
|
+
title?: string;
|
|
67
|
+
}>;
|
|
68
|
+
readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
69
|
+
title?: string;
|
|
70
|
+
}>;
|
|
71
|
+
readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
72
|
+
title?: string;
|
|
73
|
+
}>;
|
|
74
|
+
readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
|
+
title?: string;
|
|
76
|
+
}>;
|
|
77
|
+
readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
78
|
+
title?: string;
|
|
79
|
+
}>;
|
|
80
|
+
};
|
|
81
|
+
export default IconsMap;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
declare const IconsMap: {
|
|
2
|
+
readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
3
|
+
title?: string;
|
|
4
|
+
}>;
|
|
5
|
+
readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
|
+
title?: string;
|
|
7
|
+
}>;
|
|
8
|
+
readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
+
title?: string;
|
|
10
|
+
}>;
|
|
11
|
+
readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
|
+
title?: string;
|
|
13
|
+
}>;
|
|
14
|
+
readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
|
+
title?: string;
|
|
16
|
+
}>;
|
|
17
|
+
readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
18
|
+
title?: string;
|
|
19
|
+
}>;
|
|
20
|
+
readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
|
+
title?: string;
|
|
22
|
+
}>;
|
|
23
|
+
readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
24
|
+
title?: string;
|
|
25
|
+
}>;
|
|
26
|
+
readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
|
+
title?: string;
|
|
28
|
+
}>;
|
|
29
|
+
readonly instagram2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
30
|
+
title?: string;
|
|
31
|
+
}>;
|
|
32
|
+
readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
|
+
title?: string;
|
|
34
|
+
}>;
|
|
35
|
+
readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
36
|
+
title?: string;
|
|
37
|
+
}>;
|
|
38
|
+
readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
39
|
+
title?: string;
|
|
40
|
+
}>;
|
|
41
|
+
readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
42
|
+
title?: string;
|
|
43
|
+
}>;
|
|
44
|
+
readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
45
|
+
title?: string;
|
|
46
|
+
}>;
|
|
47
|
+
readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
48
|
+
title?: string;
|
|
49
|
+
}>;
|
|
50
|
+
readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
51
|
+
title?: string;
|
|
52
|
+
}>;
|
|
53
|
+
readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
54
|
+
title?: string;
|
|
55
|
+
}>;
|
|
56
|
+
readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
57
|
+
title?: string;
|
|
58
|
+
}>;
|
|
59
|
+
readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
60
|
+
title?: string;
|
|
61
|
+
}>;
|
|
62
|
+
readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
63
|
+
title?: string;
|
|
64
|
+
}>;
|
|
65
|
+
readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
66
|
+
title?: string;
|
|
67
|
+
}>;
|
|
68
|
+
readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
69
|
+
title?: string;
|
|
70
|
+
}>;
|
|
71
|
+
readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
72
|
+
title?: string;
|
|
73
|
+
}>;
|
|
74
|
+
readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
|
+
title?: string;
|
|
76
|
+
}>;
|
|
77
|
+
readonly whatsapp2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
78
|
+
title?: string;
|
|
79
|
+
}>;
|
|
80
|
+
readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
|
+
title?: string;
|
|
82
|
+
}>;
|
|
83
|
+
readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
84
|
+
title?: string;
|
|
85
|
+
}>;
|
|
86
|
+
};
|
|
87
|
+
export default IconsMap;
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
declare const iconsMap: {
|
|
2
|
+
dark48: {
|
|
3
|
+
readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
4
|
+
title?: string;
|
|
5
|
+
}>;
|
|
6
|
+
readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
7
|
+
title?: string;
|
|
8
|
+
}>;
|
|
9
|
+
readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
10
|
+
title?: string;
|
|
11
|
+
}>;
|
|
12
|
+
readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
13
|
+
title?: string;
|
|
14
|
+
}>;
|
|
15
|
+
readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
16
|
+
title?: string;
|
|
17
|
+
}>;
|
|
18
|
+
readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
19
|
+
title?: string;
|
|
20
|
+
}>;
|
|
21
|
+
readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
22
|
+
title?: string;
|
|
23
|
+
}>;
|
|
24
|
+
readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
25
|
+
title?: string;
|
|
26
|
+
}>;
|
|
27
|
+
readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
28
|
+
title?: string;
|
|
29
|
+
}>;
|
|
30
|
+
readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
31
|
+
title?: string;
|
|
32
|
+
}>;
|
|
33
|
+
readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
34
|
+
title?: string;
|
|
35
|
+
}>;
|
|
36
|
+
readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
37
|
+
title?: string;
|
|
38
|
+
}>;
|
|
39
|
+
readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
40
|
+
title?: string;
|
|
41
|
+
}>;
|
|
42
|
+
readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
43
|
+
title?: string;
|
|
44
|
+
}>;
|
|
45
|
+
readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
46
|
+
title?: string;
|
|
47
|
+
}>;
|
|
48
|
+
readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
49
|
+
title?: string;
|
|
50
|
+
}>;
|
|
51
|
+
readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
52
|
+
title?: string;
|
|
53
|
+
}>;
|
|
54
|
+
readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
55
|
+
title?: string;
|
|
56
|
+
}>;
|
|
57
|
+
readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
58
|
+
title?: string;
|
|
59
|
+
}>;
|
|
60
|
+
readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
61
|
+
title?: string;
|
|
62
|
+
}>;
|
|
63
|
+
readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
64
|
+
title?: string;
|
|
65
|
+
}>;
|
|
66
|
+
readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
67
|
+
title?: string;
|
|
68
|
+
}>;
|
|
69
|
+
readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
70
|
+
title?: string;
|
|
71
|
+
}>;
|
|
72
|
+
readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
73
|
+
title?: string;
|
|
74
|
+
}>;
|
|
75
|
+
readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
76
|
+
title?: string;
|
|
77
|
+
}>;
|
|
78
|
+
readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
79
|
+
title?: string;
|
|
80
|
+
}>;
|
|
81
|
+
};
|
|
82
|
+
light48: {
|
|
83
|
+
readonly apple: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
84
|
+
title?: string;
|
|
85
|
+
}>;
|
|
86
|
+
readonly discord: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
|
+
title?: string;
|
|
88
|
+
}>;
|
|
89
|
+
readonly dribbble: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
90
|
+
title?: string;
|
|
91
|
+
}>;
|
|
92
|
+
readonly facebook: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
93
|
+
title?: string;
|
|
94
|
+
}>;
|
|
95
|
+
readonly figma: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
96
|
+
title?: string;
|
|
97
|
+
}>;
|
|
98
|
+
readonly github: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
99
|
+
title?: string;
|
|
100
|
+
}>;
|
|
101
|
+
readonly google: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
102
|
+
title?: string;
|
|
103
|
+
}>;
|
|
104
|
+
readonly handwave: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
105
|
+
title?: string;
|
|
106
|
+
}>;
|
|
107
|
+
readonly instagram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
108
|
+
title?: string;
|
|
109
|
+
}>;
|
|
110
|
+
readonly instagram2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
|
+
title?: string;
|
|
112
|
+
}>;
|
|
113
|
+
readonly linkedin: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
114
|
+
title?: string;
|
|
115
|
+
}>;
|
|
116
|
+
readonly medium: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
|
+
title?: string;
|
|
118
|
+
}>;
|
|
119
|
+
readonly messenger: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
120
|
+
title?: string;
|
|
121
|
+
}>;
|
|
122
|
+
readonly pinterest: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
|
+
title?: string;
|
|
124
|
+
}>;
|
|
125
|
+
readonly reddit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
126
|
+
title?: string;
|
|
127
|
+
}>;
|
|
128
|
+
readonly signal: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
129
|
+
title?: string;
|
|
130
|
+
}>;
|
|
131
|
+
readonly snapchat: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
132
|
+
title?: string;
|
|
133
|
+
}>;
|
|
134
|
+
readonly spotify: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
135
|
+
title?: string;
|
|
136
|
+
}>;
|
|
137
|
+
readonly telegram: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
138
|
+
title?: string;
|
|
139
|
+
}>;
|
|
140
|
+
readonly threads: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
141
|
+
title?: string;
|
|
142
|
+
}>;
|
|
143
|
+
readonly tiktok: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
144
|
+
title?: string;
|
|
145
|
+
}>;
|
|
146
|
+
readonly tumblr: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
147
|
+
title?: string;
|
|
148
|
+
}>;
|
|
149
|
+
readonly twitch: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
150
|
+
title?: string;
|
|
151
|
+
}>;
|
|
152
|
+
readonly vk: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
153
|
+
title?: string;
|
|
154
|
+
}>;
|
|
155
|
+
readonly whatsapp: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
156
|
+
title?: string;
|
|
157
|
+
}>;
|
|
158
|
+
readonly whatsapp2: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
159
|
+
title?: string;
|
|
160
|
+
}>;
|
|
161
|
+
readonly x: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
162
|
+
title?: string;
|
|
163
|
+
}>;
|
|
164
|
+
readonly youtube: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
165
|
+
title?: string;
|
|
166
|
+
}>;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
export default iconsMap;
|