@goodhood-web/ui 3.4.0-development.11 → 3.4.0-development.12
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 +6 -6
- package/index.mjs +1838 -1834
- package/lib/Base/Icon/icons/coloured/16x16/index.d.ts +9 -0
- package/lib/Base/Icon/icons/coloured/24x24/index.d.ts +9 -0
- package/lib/Base/Icon/icons/coloured/index.d.ts +16 -2
- package/lib/Base/Icon/icons/index.d.ts +16 -2
- package/package.json +1 -1
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
declare const iconsMap: {
|
|
2
|
-
'16':
|
|
3
|
-
|
|
2
|
+
'16': {
|
|
3
|
+
readonly checkmark_circle_coloured: 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 checkmark_circle_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
12
|
+
title?: string;
|
|
13
|
+
titleId?: string;
|
|
14
|
+
desc?: string;
|
|
15
|
+
descId?: string;
|
|
16
|
+
}>;
|
|
17
|
+
};
|
|
4
18
|
'32': {
|
|
5
19
|
readonly bubble_heart_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
6
20
|
title?: string;
|
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
declare const iconsMap: {
|
|
2
2
|
coloured: {
|
|
3
|
-
'16':
|
|
4
|
-
|
|
3
|
+
'16': {
|
|
4
|
+
readonly checkmark_circle_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
desc?: string;
|
|
8
|
+
descId?: string;
|
|
9
|
+
}>;
|
|
10
|
+
};
|
|
11
|
+
'24': {
|
|
12
|
+
readonly checkmark_circle_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
13
|
+
title?: string;
|
|
14
|
+
titleId?: string;
|
|
15
|
+
desc?: string;
|
|
16
|
+
descId?: string;
|
|
17
|
+
}>;
|
|
18
|
+
};
|
|
5
19
|
'32': {
|
|
6
20
|
readonly bubble_heart_coloured: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
7
21
|
title?: string;
|