magick-icons 0.1.35 → 0.1.37

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.ts CHANGED
@@ -20,31 +20,7 @@
20
20
  export { Apple, type AppleProps } from './icons/Apple';
21
21
 
22
22
  /**
23
- * BrandInstagram icon component and its props type
24
- * @see {@link BrandInstagramProps} for available props
23
+ * Enter icon component and its props type
24
+ * @see {@link EnterProps} for available props
25
25
  */
26
- export { BrandInstagram, type BrandInstagramProps } from './icons/BrandInstagram';
27
-
28
- /**
29
- * Image6 icon component and its props type
30
- * @see {@link Image6Props} for available props
31
- */
32
- export { Image6, type Image6Props } from './icons/Image6';
33
-
34
- /**
35
- * IxWebcam1 icon component and its props type
36
- * @see {@link IxWebcam1Props} for available props
37
- */
38
- export { IxWebcam1, type IxWebcam1Props } from './icons/IxWebcam1';
39
-
40
- /**
41
- * Magicko3DotsMore icon component and its props type
42
- * @see {@link Magicko3DotsMoreProps} for available props
43
- */
44
- export { Magicko3DotsMore, type Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
45
-
46
- /**
47
- * Sparkles icon component and its props type
48
- * @see {@link SparklesProps} for available props
49
- */
50
- export { Sparkles, type SparklesProps } from './icons/Sparkles';
26
+ export { Enter, type EnterProps } from './icons/Enter';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magick-icons",
3
- "version": "0.1.35",
3
+ "version": "0.1.37",
4
4
  "main": "index.js",
5
5
  "module": "index.mjs",
6
6
  "types": "index.d.ts",
package/types.ts CHANGED
@@ -1,19 +1,11 @@
1
1
  // Auto-generated file - do not edit manually
2
2
  import type * as React from 'react';
3
3
  import type { AppleProps } from './icons/Apple';
4
- import type { BrandInstagramProps } from './icons/BrandInstagram';
5
- import type { Image6Props } from './icons/Image6';
6
- import type { IxWebcam1Props } from './icons/IxWebcam1';
7
- import type { Magicko3DotsMoreProps } from './icons/Magicko3DotsMore';
8
- import type { SparklesProps } from './icons/Sparkles';
4
+ import type { EnterProps } from './icons/Enter';
9
5
 
10
6
  export interface IconComponents {
11
7
  Apple: React.ComponentType<AppleProps>;
12
- BrandInstagram: React.ComponentType<BrandInstagramProps>;
13
- Image6: React.ComponentType<Image6Props>;
14
- IxWebcam1: React.ComponentType<IxWebcam1Props>;
15
- Magicko3DotsMore: React.ComponentType<Magicko3DotsMoreProps>;
16
- Sparkles: React.ComponentType<SparklesProps>;
8
+ Enter: React.ComponentType<EnterProps>;
17
9
  }
18
10
 
19
- export type IconName = 'Apple' | 'BrandInstagram' | 'Image6' | 'IxWebcam1' | 'Magicko3DotsMore' | 'Sparkles';
11
+ export type IconName = 'Apple' | 'Enter';
@@ -1,30 +0,0 @@
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';