magick-icons 0.1.170 → 0.1.171

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.d.mts CHANGED
@@ -1,5 +1,95 @@
1
1
  import React from 'react';
2
2
 
3
+ /**
4
+ * Props for the Add1 icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface Add1Props extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * Add1 icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { Add1 } from 'magick-icons';
15
+ *
16
+ * <Add1 size={24} className="text-blue-500" strokeWidth={2} />
17
+ * ```
18
+ */
19
+ declare const Add1: React.ForwardRefExoticComponent<Omit<Add1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
21
+ /**
22
+ * Props for the Add11 icon component
23
+ * @property {number | string} [size] - Size of the icon (default: 24)
24
+ */
25
+ interface Add11Props extends React.SVGProps<SVGSVGElement> {
26
+ size?: number | string;
27
+ }
28
+ /**
29
+ * Add11 icon component
30
+ * @example
31
+ * ```tsx
32
+ * import { Add11 } from 'magick-icons';
33
+ *
34
+ * <Add11 size={24} className="text-blue-500" strokeWidth={2} />
35
+ * ```
36
+ */
37
+ declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
+
39
+ /**
40
+ * Props for the AddCircle1 icon component
41
+ * @property {number | string} [size] - Size of the icon (default: 24)
42
+ */
43
+ interface AddCircle1Props extends React.SVGProps<SVGSVGElement> {
44
+ size?: number | string;
45
+ }
46
+ /**
47
+ * AddCircle1 icon component
48
+ * @example
49
+ * ```tsx
50
+ * import { AddCircle1 } from 'magick-icons';
51
+ *
52
+ * <AddCircle1 size={24} className="text-blue-500" strokeWidth={2} />
53
+ * ```
54
+ */
55
+ declare const AddCircle1: React.ForwardRefExoticComponent<Omit<AddCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
+
57
+ /**
58
+ * Props for the AddItem1 icon component
59
+ * @property {number | string} [size] - Size of the icon (default: 24)
60
+ */
61
+ interface AddItem1Props extends React.SVGProps<SVGSVGElement> {
62
+ size?: number | string;
63
+ }
64
+ /**
65
+ * AddItem1 icon component
66
+ * @example
67
+ * ```tsx
68
+ * import { AddItem1 } from 'magick-icons';
69
+ *
70
+ * <AddItem1 size={24} className="text-blue-500" strokeWidth={2} />
71
+ * ```
72
+ */
73
+ declare const AddItem1: React.ForwardRefExoticComponent<Omit<AddItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
+
75
+ /**
76
+ * Props for the AiFlask1 icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface AiFlask1Props extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * AiFlask1 icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { AiFlask1 } from 'magick-icons';
87
+ *
88
+ * <AiFlask1 size={24} className="text-blue-500" strokeWidth={2} />
89
+ * ```
90
+ */
91
+ declare const AiFlask1: React.ForwardRefExoticComponent<Omit<AiFlask1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
3
93
  /**
4
94
  * Props for the AiIcon icon component
5
95
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -18,6 +108,24 @@ interface AiIconProps extends React.SVGProps<SVGSVGElement> {
18
108
  */
19
109
  declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
110
 
111
+ /**
112
+ * Props for the AiScience1 icon component
113
+ * @property {number | string} [size] - Size of the icon (default: 24)
114
+ */
115
+ interface AiScience1Props extends React.SVGProps<SVGSVGElement> {
116
+ size?: number | string;
117
+ }
118
+ /**
119
+ * AiScience1 icon component
120
+ * @example
121
+ * ```tsx
122
+ * import { AiScience1 } from 'magick-icons';
123
+ *
124
+ * <AiScience1 size={24} className="text-blue-500" strokeWidth={2} />
125
+ * ```
126
+ */
127
+ declare const AiScience1: React.ForwardRefExoticComponent<Omit<AiScience1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
128
+
21
129
  /**
22
130
  * Props for the ArchiveBold icon component
23
131
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -90,6 +198,60 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
90
198
  */
91
199
  declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
200
 
201
+ /**
202
+ * Props for the Autobrightness1 icon component
203
+ * @property {number | string} [size] - Size of the icon (default: 24)
204
+ */
205
+ interface Autobrightness1Props extends React.SVGProps<SVGSVGElement> {
206
+ size?: number | string;
207
+ }
208
+ /**
209
+ * Autobrightness1 icon component
210
+ * @example
211
+ * ```tsx
212
+ * import { Autobrightness1 } from 'magick-icons';
213
+ *
214
+ * <Autobrightness1 size={24} className="text-blue-500" strokeWidth={2} />
215
+ * ```
216
+ */
217
+ declare const Autobrightness1: React.ForwardRefExoticComponent<Omit<Autobrightness1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
218
+
219
+ /**
220
+ * Props for the BackwardItem1 icon component
221
+ * @property {number | string} [size] - Size of the icon (default: 24)
222
+ */
223
+ interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {
224
+ size?: number | string;
225
+ }
226
+ /**
227
+ * BackwardItem1 icon component
228
+ * @example
229
+ * ```tsx
230
+ * import { BackwardItem1 } from 'magick-icons';
231
+ *
232
+ * <BackwardItem1 size={24} className="text-blue-500" strokeWidth={2} />
233
+ * ```
234
+ */
235
+ declare const BackwardItem1: React.ForwardRefExoticComponent<Omit<BackwardItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
236
+
237
+ /**
238
+ * Props for the Battery2bars1 icon component
239
+ * @property {number | string} [size] - Size of the icon (default: 24)
240
+ */
241
+ interface Battery2bars1Props extends React.SVGProps<SVGSVGElement> {
242
+ size?: number | string;
243
+ }
244
+ /**
245
+ * Battery2bars1 icon component
246
+ * @example
247
+ * ```tsx
248
+ * import { Battery2bars1 } from 'magick-icons';
249
+ *
250
+ * <Battery2bars1 size={24} className="text-blue-500" strokeWidth={2} />
251
+ * ```
252
+ */
253
+ declare const Battery2bars1: React.ForwardRefExoticComponent<Omit<Battery2bars1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
254
+
93
255
  /**
94
256
  * Props for the BookmarkFilled icon component
95
257
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -738,6 +900,42 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
738
900
  */
739
901
  declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
740
902
 
903
+ /**
904
+ * Props for the Icon3dcube1 icon component
905
+ * @property {number | string} [size] - Size of the icon (default: 24)
906
+ */
907
+ interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
908
+ size?: number | string;
909
+ }
910
+ /**
911
+ * Icon3dcube1 icon component
912
+ * @example
913
+ * ```tsx
914
+ * import { Icon3dcube1 } from 'magick-icons';
915
+ *
916
+ * <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
917
+ * ```
918
+ */
919
+ declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
920
+
921
+ /**
922
+ * Props for the Icon3square1 icon component
923
+ * @property {number | string} [size] - Size of the icon (default: 24)
924
+ */
925
+ interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
926
+ size?: number | string;
927
+ }
928
+ /**
929
+ * Icon3square1 icon component
930
+ * @example
931
+ * ```tsx
932
+ * import { Icon3square1 } from 'magick-icons';
933
+ *
934
+ * <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
935
+ * ```
936
+ */
937
+ declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
938
+
741
939
  /**
742
940
  * Props for the IconsaxAiScienceBold icon component
743
941
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1476,4 +1674,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
1476
1674
  */
1477
1675
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1478
1676
 
1479
- export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Frame, Frame1000007191, type Frame1000007191Props, Frame1000007193, type Frame1000007193Props, Frame1000007194, type Frame1000007194Props, Frame1000007195, type Frame1000007195Props, Frame1000007196, type Frame1000007196Props, type FrameProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
1677
+ export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Frame, Frame1000007191, type Frame1000007191Props, Frame1000007193, type Frame1000007193Props, Frame1000007194, type Frame1000007194Props, Frame1000007195, type Frame1000007195Props, Frame1000007196, type Frame1000007196Props, type FrameProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
package/index.d.ts CHANGED
@@ -1,5 +1,95 @@
1
1
  import React from 'react';
2
2
 
3
+ /**
4
+ * Props for the Add1 icon component
5
+ * @property {number | string} [size] - Size of the icon (default: 24)
6
+ */
7
+ interface Add1Props extends React.SVGProps<SVGSVGElement> {
8
+ size?: number | string;
9
+ }
10
+ /**
11
+ * Add1 icon component
12
+ * @example
13
+ * ```tsx
14
+ * import { Add1 } from 'magick-icons';
15
+ *
16
+ * <Add1 size={24} className="text-blue-500" strokeWidth={2} />
17
+ * ```
18
+ */
19
+ declare const Add1: React.ForwardRefExoticComponent<Omit<Add1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
+
21
+ /**
22
+ * Props for the Add11 icon component
23
+ * @property {number | string} [size] - Size of the icon (default: 24)
24
+ */
25
+ interface Add11Props extends React.SVGProps<SVGSVGElement> {
26
+ size?: number | string;
27
+ }
28
+ /**
29
+ * Add11 icon component
30
+ * @example
31
+ * ```tsx
32
+ * import { Add11 } from 'magick-icons';
33
+ *
34
+ * <Add11 size={24} className="text-blue-500" strokeWidth={2} />
35
+ * ```
36
+ */
37
+ declare const Add11: React.ForwardRefExoticComponent<Omit<Add11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
38
+
39
+ /**
40
+ * Props for the AddCircle1 icon component
41
+ * @property {number | string} [size] - Size of the icon (default: 24)
42
+ */
43
+ interface AddCircle1Props extends React.SVGProps<SVGSVGElement> {
44
+ size?: number | string;
45
+ }
46
+ /**
47
+ * AddCircle1 icon component
48
+ * @example
49
+ * ```tsx
50
+ * import { AddCircle1 } from 'magick-icons';
51
+ *
52
+ * <AddCircle1 size={24} className="text-blue-500" strokeWidth={2} />
53
+ * ```
54
+ */
55
+ declare const AddCircle1: React.ForwardRefExoticComponent<Omit<AddCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
56
+
57
+ /**
58
+ * Props for the AddItem1 icon component
59
+ * @property {number | string} [size] - Size of the icon (default: 24)
60
+ */
61
+ interface AddItem1Props extends React.SVGProps<SVGSVGElement> {
62
+ size?: number | string;
63
+ }
64
+ /**
65
+ * AddItem1 icon component
66
+ * @example
67
+ * ```tsx
68
+ * import { AddItem1 } from 'magick-icons';
69
+ *
70
+ * <AddItem1 size={24} className="text-blue-500" strokeWidth={2} />
71
+ * ```
72
+ */
73
+ declare const AddItem1: React.ForwardRefExoticComponent<Omit<AddItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
74
+
75
+ /**
76
+ * Props for the AiFlask1 icon component
77
+ * @property {number | string} [size] - Size of the icon (default: 24)
78
+ */
79
+ interface AiFlask1Props extends React.SVGProps<SVGSVGElement> {
80
+ size?: number | string;
81
+ }
82
+ /**
83
+ * AiFlask1 icon component
84
+ * @example
85
+ * ```tsx
86
+ * import { AiFlask1 } from 'magick-icons';
87
+ *
88
+ * <AiFlask1 size={24} className="text-blue-500" strokeWidth={2} />
89
+ * ```
90
+ */
91
+ declare const AiFlask1: React.ForwardRefExoticComponent<Omit<AiFlask1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
+
3
93
  /**
4
94
  * Props for the AiIcon icon component
5
95
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -18,6 +108,24 @@ interface AiIconProps extends React.SVGProps<SVGSVGElement> {
18
108
  */
19
109
  declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
20
110
 
111
+ /**
112
+ * Props for the AiScience1 icon component
113
+ * @property {number | string} [size] - Size of the icon (default: 24)
114
+ */
115
+ interface AiScience1Props extends React.SVGProps<SVGSVGElement> {
116
+ size?: number | string;
117
+ }
118
+ /**
119
+ * AiScience1 icon component
120
+ * @example
121
+ * ```tsx
122
+ * import { AiScience1 } from 'magick-icons';
123
+ *
124
+ * <AiScience1 size={24} className="text-blue-500" strokeWidth={2} />
125
+ * ```
126
+ */
127
+ declare const AiScience1: React.ForwardRefExoticComponent<Omit<AiScience1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
128
+
21
129
  /**
22
130
  * Props for the ArchiveBold icon component
23
131
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -90,6 +198,60 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
90
198
  */
91
199
  declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
92
200
 
201
+ /**
202
+ * Props for the Autobrightness1 icon component
203
+ * @property {number | string} [size] - Size of the icon (default: 24)
204
+ */
205
+ interface Autobrightness1Props extends React.SVGProps<SVGSVGElement> {
206
+ size?: number | string;
207
+ }
208
+ /**
209
+ * Autobrightness1 icon component
210
+ * @example
211
+ * ```tsx
212
+ * import { Autobrightness1 } from 'magick-icons';
213
+ *
214
+ * <Autobrightness1 size={24} className="text-blue-500" strokeWidth={2} />
215
+ * ```
216
+ */
217
+ declare const Autobrightness1: React.ForwardRefExoticComponent<Omit<Autobrightness1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
218
+
219
+ /**
220
+ * Props for the BackwardItem1 icon component
221
+ * @property {number | string} [size] - Size of the icon (default: 24)
222
+ */
223
+ interface BackwardItem1Props extends React.SVGProps<SVGSVGElement> {
224
+ size?: number | string;
225
+ }
226
+ /**
227
+ * BackwardItem1 icon component
228
+ * @example
229
+ * ```tsx
230
+ * import { BackwardItem1 } from 'magick-icons';
231
+ *
232
+ * <BackwardItem1 size={24} className="text-blue-500" strokeWidth={2} />
233
+ * ```
234
+ */
235
+ declare const BackwardItem1: React.ForwardRefExoticComponent<Omit<BackwardItem1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
236
+
237
+ /**
238
+ * Props for the Battery2bars1 icon component
239
+ * @property {number | string} [size] - Size of the icon (default: 24)
240
+ */
241
+ interface Battery2bars1Props extends React.SVGProps<SVGSVGElement> {
242
+ size?: number | string;
243
+ }
244
+ /**
245
+ * Battery2bars1 icon component
246
+ * @example
247
+ * ```tsx
248
+ * import { Battery2bars1 } from 'magick-icons';
249
+ *
250
+ * <Battery2bars1 size={24} className="text-blue-500" strokeWidth={2} />
251
+ * ```
252
+ */
253
+ declare const Battery2bars1: React.ForwardRefExoticComponent<Omit<Battery2bars1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
254
+
93
255
  /**
94
256
  * Props for the BookmarkFilled icon component
95
257
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -738,6 +900,42 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
738
900
  */
739
901
  declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
740
902
 
903
+ /**
904
+ * Props for the Icon3dcube1 icon component
905
+ * @property {number | string} [size] - Size of the icon (default: 24)
906
+ */
907
+ interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
908
+ size?: number | string;
909
+ }
910
+ /**
911
+ * Icon3dcube1 icon component
912
+ * @example
913
+ * ```tsx
914
+ * import { Icon3dcube1 } from 'magick-icons';
915
+ *
916
+ * <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
917
+ * ```
918
+ */
919
+ declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
920
+
921
+ /**
922
+ * Props for the Icon3square1 icon component
923
+ * @property {number | string} [size] - Size of the icon (default: 24)
924
+ */
925
+ interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
926
+ size?: number | string;
927
+ }
928
+ /**
929
+ * Icon3square1 icon component
930
+ * @example
931
+ * ```tsx
932
+ * import { Icon3square1 } from 'magick-icons';
933
+ *
934
+ * <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
935
+ * ```
936
+ */
937
+ declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
938
+
741
939
  /**
742
940
  * Props for the IconsaxAiScienceBold icon component
743
941
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -1476,4 +1674,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
1476
1674
  */
1477
1675
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1478
1676
 
1479
- export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Frame, Frame1000007191, type Frame1000007191Props, Frame1000007193, type Frame1000007193Props, Frame1000007194, type Frame1000007194Props, Frame1000007195, type Frame1000007195Props, Frame1000007196, type Frame1000007196Props, type FrameProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
1677
+ export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Frame, Frame1000007191, type Frame1000007191Props, Frame1000007193, type Frame1000007193Props, Frame1000007194, type Frame1000007194Props, Frame1000007195, type Frame1000007195Props, Frame1000007196, type Frame1000007196Props, type FrameProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, MingcuteMicLine1, MingcuteMicLine11, type MingcuteMicLine11Props, MingcuteMicLine12, type MingcuteMicLine12Props, type MingcuteMicLine1Props, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };