magick-icons 0.1.19 → 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.
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+
3
+ export interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
4
+ size?: number | string;
5
+ }
6
+
7
+ export const Magicko3DotsMore = React.forwardRef<SVGSVGElement, Magicko3DotsMoreProps>(
8
+ ({ size, ...props }, ref) => {
9
+ return (
10
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
11
+ <path d="M5 10C5 11.1046 4.10457 12 3 12C1.89543 12 1 11.1046 1 10C1 8.89543 1.89543 8 3 8C4.10457 8 5 8.89543 5 10Z" fill="#1E293B"/>
12
+ <path d="M12 10C12 11.1046 11.1046 12 10 12C8.89543 12 8 11.1046 8 10C8 8.89543 8.89543 8 10 8C11.1046 8 12 8.89543 12 10Z" fill="#1E293B"/>
13
+ <path d="M19 10C19 11.1046 18.1046 12 17 12C15.8954 12 15 11.1046 15 10C15 8.89543 15.8954 8 17 8C18.1046 8 19 8.89543 19 10Z" fill="#1E293B"/>
14
+ </svg>
15
+ );
16
+ }
17
+ );
18
+
19
+ Magicko3DotsMore.displayName = 'Magicko3DotsMore';
package/index.d.mts CHANGED
@@ -1,18 +1,23 @@
1
1
  import React from 'react';
2
2
 
3
- interface IconContainer16Props extends React.SVGProps<SVGSVGElement> {
3
+ interface EnglishCProps extends React.SVGProps<SVGSVGElement> {
4
4
  size?: number | string;
5
5
  }
6
- declare const IconContainer16: React.ForwardRefExoticComponent<Omit<IconContainer16Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ declare const EnglishC: React.ForwardRefExoticComponent<Omit<EnglishCProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
7
 
8
- interface IconContainer17Props extends React.SVGProps<SVGSVGElement> {
8
+ interface Image10Props extends React.SVGProps<SVGSVGElement> {
9
9
  size?: number | string;
10
10
  }
11
- declare const IconContainer17: React.ForwardRefExoticComponent<Omit<IconContainer17Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
11
+ declare const Image10: React.ForwardRefExoticComponent<Omit<Image10Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12
12
 
13
- interface IconContainer18Props extends React.SVGProps<SVGSVGElement> {
13
+ interface Image8Props extends React.SVGProps<SVGSVGElement> {
14
14
  size?: number | string;
15
15
  }
16
- declare const IconContainer18: React.ForwardRefExoticComponent<Omit<IconContainer18Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16
+ declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17
17
 
18
- export { IconContainer16, type IconContainer16Props, IconContainer17, type IconContainer17Props, IconContainer18, type IconContainer18Props };
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 IconContainer16Props extends React.SVGProps<SVGSVGElement> {
3
+ interface EnglishCProps extends React.SVGProps<SVGSVGElement> {
4
4
  size?: number | string;
5
5
  }
6
- declare const IconContainer16: React.ForwardRefExoticComponent<Omit<IconContainer16Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
6
+ declare const EnglishC: React.ForwardRefExoticComponent<Omit<EnglishCProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
7
 
8
- interface IconContainer17Props extends React.SVGProps<SVGSVGElement> {
8
+ interface Image10Props extends React.SVGProps<SVGSVGElement> {
9
9
  size?: number | string;
10
10
  }
11
- declare const IconContainer17: React.ForwardRefExoticComponent<Omit<IconContainer17Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
11
+ declare const Image10: React.ForwardRefExoticComponent<Omit<Image10Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
12
12
 
13
- interface IconContainer18Props extends React.SVGProps<SVGSVGElement> {
13
+ interface Image8Props extends React.SVGProps<SVGSVGElement> {
14
14
  size?: number | string;
15
15
  }
16
- declare const IconContainer18: React.ForwardRefExoticComponent<Omit<IconContainer18Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
16
+ declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17
17
 
18
- export { IconContainer16, type IconContainer16Props, IconContainer17, type IconContainer17Props, IconContainer18, type IconContainer18Props };
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 };