magick-icons 0.1.20 → 0.1.21
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/icons/Image10.tsx +3 -3
- package/icons/Image8.tsx +3 -3
- package/index.d.mts +12 -7
- package/index.d.ts +12 -7
- package/index.js +6 -6
- package/index.js.map +1 -1
- package/index.mjs +6 -6
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface EnglishCProps extends React.SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
6
|
+
declare const EnglishC: React.ForwardRefExoticComponent<Omit<EnglishCProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
7
|
|
|
8
|
-
interface
|
|
8
|
+
interface Image10Props extends React.SVGProps<SVGSVGElement> {
|
|
9
9
|
size?: number | string;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
11
|
+
declare const Image10: React.ForwardRefExoticComponent<Omit<Image10Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12
12
|
|
|
13
|
-
interface
|
|
13
|
+
interface Image8Props extends React.SVGProps<SVGSVGElement> {
|
|
14
14
|
size?: number | string;
|
|
15
15
|
}
|
|
16
|
-
declare const
|
|
16
|
+
declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
|
|
19
|
+
size?: number | string;
|
|
20
|
+
}
|
|
21
|
+
declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
|
|
23
|
+
export { EnglishC, type EnglishCProps, Image10, type Image10Props, Image8, type Image8Props, Magicko3DotsMore, type Magicko3DotsMoreProps };
|
package/index.d.ts
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface EnglishCProps extends React.SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
6
|
+
declare const EnglishC: React.ForwardRefExoticComponent<Omit<EnglishCProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
7
|
|
|
8
|
-
interface
|
|
8
|
+
interface Image10Props extends React.SVGProps<SVGSVGElement> {
|
|
9
9
|
size?: number | string;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
11
|
+
declare const Image10: React.ForwardRefExoticComponent<Omit<Image10Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12
12
|
|
|
13
|
-
interface
|
|
13
|
+
interface Image8Props extends React.SVGProps<SVGSVGElement> {
|
|
14
14
|
size?: number | string;
|
|
15
15
|
}
|
|
16
|
-
declare const
|
|
16
|
+
declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
|
|
19
|
+
size?: number | string;
|
|
20
|
+
}
|
|
21
|
+
declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
|
|
23
|
+
export { EnglishC, type EnglishCProps, Image10, type Image10Props, Image8, type Image8Props, Magicko3DotsMore, type Magicko3DotsMoreProps };
|