magick-icons 0.1.26 → 0.1.28

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,30 @@
1
+ import React from 'react';
2
+
3
+ /**
4
+ * Props for the BrandInstagram icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ export interface BrandInstagramProps extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+
11
+ /**
12
+ * BrandInstagram icon component
13
+ * @example
14
+ * ```tsx
15
+ * import { BrandInstagram } from 'magick-icons';
16
+ *
17
+ * <BrandInstagram size={24} className="text-blue-500" />
18
+ * ```
19
+ */
20
+ export const BrandInstagram = React.forwardRef<SVGSVGElement, BrandInstagramProps>(
21
+ ({ size, ...props }, ref) => {
22
+ return (
23
+ <svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
24
+ <path d="M14.4375 6.5625V6.57125M3.5 7C3.5 6.07174 3.86875 5.1815 4.52513 4.52513C5.1815 3.86875 6.07174 3.5 7 3.5H14C14.9283 3.5 15.8185 3.86875 16.4749 4.52513C17.1313 5.1815 17.5 6.07174 17.5 7V14C17.5 14.9283 17.1313 15.8185 16.4749 16.4749C15.8185 17.1313 14.9283 17.5 14 17.5H7C6.07174 17.5 5.1815 17.1313 4.52513 16.4749C3.86875 15.8185 3.5 14.9283 3.5 14V7ZM7.875 10.5C7.875 11.1962 8.15156 11.8639 8.64384 12.3562C9.13613 12.8484 9.80381 13.125 10.5 13.125C11.1962 13.125 11.8639 12.8484 12.3562 12.3562C12.8484 11.8639 13.125 11.1962 13.125 10.5C13.125 9.80381 12.8484 9.13613 12.3562 8.64384C11.8639 8.15156 11.1962 7.875 10.5 7.875C9.80381 7.875 9.13613 8.15156 8.64384 8.64384C8.15156 9.13613 7.875 9.80381 7.875 10.5Z" stroke="#D5D5D5" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"/>
25
+ </svg>
26
+ );
27
+ }
28
+ );
29
+
30
+ BrandInstagram.displayName = 'BrandInstagram';
@@ -1,9 +1,22 @@
1
1
  import React from 'react';
2
2
 
3
+ /**
4
+ * Props for the EnglishC icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
3
7
  export interface EnglishCProps extends React.SVGProps<SVGSVGElement> {
4
8
  size?: number | string;
5
9
  }
6
10
 
11
+ /**
12
+ * EnglishC icon component
13
+ * @example
14
+ * ```tsx
15
+ * import { EnglishC } from 'magick-icons';
16
+ *
17
+ * <EnglishC size={24} className="text-blue-500" />
18
+ * ```
19
+ */
7
20
  export const EnglishC = React.forwardRef<SVGSVGElement, EnglishCProps>(
8
21
  ({ size, ...props }, ref) => {
9
22
  return (
package/index.d.mts CHANGED
@@ -1,38 +1,21 @@
1
1
  import React from 'react';
2
2
 
3
- interface AppleProps extends React.SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Apple: React.ForwardRefExoticComponent<Omit<AppleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
-
3
+ /**
4
+ * Props for the EnglishC icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
8
7
  interface EnglishCProps extends React.SVGProps<SVGSVGElement> {
9
8
  size?: number | string;
10
9
  }
10
+ /**
11
+ * EnglishC icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { EnglishC } from 'magick-icons';
15
+ *
16
+ * <EnglishC size={24} className="text-blue-500" />
17
+ * ```
18
+ */
11
19
  declare const EnglishC: React.ForwardRefExoticComponent<Omit<EnglishCProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12
20
 
13
- interface IconContainer19Props extends React.SVGProps<SVGSVGElement> {
14
- size?: number | string;
15
- }
16
- declare const IconContainer19: React.ForwardRefExoticComponent<Omit<IconContainer19Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17
-
18
- interface Image10Props extends React.SVGProps<SVGSVGElement> {
19
- size?: number | string;
20
- }
21
- declare const Image10: React.ForwardRefExoticComponent<Omit<Image10Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
22
-
23
- interface Image8Props extends React.SVGProps<SVGSVGElement> {
24
- size?: number | string;
25
- }
26
- declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
27
-
28
- interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
29
- size?: number | string;
30
- }
31
- declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
32
-
33
- interface Vector13Props extends React.SVGProps<SVGSVGElement> {
34
- size?: number | string;
35
- }
36
- declare const Vector13: React.ForwardRefExoticComponent<Omit<Vector13Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
37
-
38
- export { Apple, type AppleProps, EnglishC, type EnglishCProps, IconContainer19, type IconContainer19Props, Image10, type Image10Props, Image8, type Image8Props, Magicko3DotsMore, type Magicko3DotsMoreProps, Vector13, type Vector13Props };
21
+ export { EnglishC, type EnglishCProps };
package/index.d.ts CHANGED
@@ -1,38 +1,21 @@
1
1
  import React from 'react';
2
2
 
3
- interface AppleProps extends React.SVGProps<SVGSVGElement> {
4
- size?: number | string;
5
- }
6
- declare const Apple: React.ForwardRefExoticComponent<Omit<AppleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7
-
3
+ /**
4
+ * Props for the EnglishC icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
8
7
  interface EnglishCProps extends React.SVGProps<SVGSVGElement> {
9
8
  size?: number | string;
10
9
  }
10
+ /**
11
+ * EnglishC icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { EnglishC } from 'magick-icons';
15
+ *
16
+ * <EnglishC size={24} className="text-blue-500" />
17
+ * ```
18
+ */
11
19
  declare const EnglishC: React.ForwardRefExoticComponent<Omit<EnglishCProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
12
20
 
13
- interface IconContainer19Props extends React.SVGProps<SVGSVGElement> {
14
- size?: number | string;
15
- }
16
- declare const IconContainer19: React.ForwardRefExoticComponent<Omit<IconContainer19Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
17
-
18
- interface Image10Props extends React.SVGProps<SVGSVGElement> {
19
- size?: number | string;
20
- }
21
- declare const Image10: React.ForwardRefExoticComponent<Omit<Image10Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
22
-
23
- interface Image8Props extends React.SVGProps<SVGSVGElement> {
24
- size?: number | string;
25
- }
26
- declare const Image8: React.ForwardRefExoticComponent<Omit<Image8Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
27
-
28
- interface Magicko3DotsMoreProps extends React.SVGProps<SVGSVGElement> {
29
- size?: number | string;
30
- }
31
- declare const Magicko3DotsMore: React.ForwardRefExoticComponent<Omit<Magicko3DotsMoreProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
32
-
33
- interface Vector13Props extends React.SVGProps<SVGSVGElement> {
34
- size?: number | string;
35
- }
36
- declare const Vector13: React.ForwardRefExoticComponent<Omit<Vector13Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
37
-
38
- export { Apple, type AppleProps, EnglishC, type EnglishCProps, IconContainer19, type IconContainer19Props, Image10, type Image10Props, Image8, type Image8Props, Magicko3DotsMore, type Magicko3DotsMoreProps, Vector13, type Vector13Props };
21
+ export { EnglishC, type EnglishCProps };