magick-icons 0.1.193 → 0.1.195
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 +289 -1
- package/index.d.ts +289 -1
- package/index.js +557 -314
- package/index.js.map +1 -1
- package/index.mjs +544 -317
- package/index.mjs.map +1 -1
- package/package.json +1 -1
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,150 @@ 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
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Props for the BatteryCharging1 icon component
|
|
257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
+
*/
|
|
259
|
+
interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
|
|
260
|
+
size?: number | string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* BatteryCharging1 icon component
|
|
264
|
+
* @example
|
|
265
|
+
* ```tsx
|
|
266
|
+
* import { BatteryCharging1 } from 'magick-icons';
|
|
267
|
+
*
|
|
268
|
+
* <BatteryCharging1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
271
|
+
declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* Props for the BatteryDisable1 icon component
|
|
275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
+
*/
|
|
277
|
+
interface BatteryDisable1Props extends React.SVGProps<SVGSVGElement> {
|
|
278
|
+
size?: number | string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* BatteryDisable1 icon component
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { BatteryDisable1 } from 'magick-icons';
|
|
285
|
+
*
|
|
286
|
+
* <BatteryDisable1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
declare const BatteryDisable1: React.ForwardRefExoticComponent<Omit<BatteryDisable1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Props for the BatteryEmpty1 icon component
|
|
293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
+
*/
|
|
295
|
+
interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
|
|
296
|
+
size?: number | string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* BatteryEmpty1 icon component
|
|
300
|
+
* @example
|
|
301
|
+
* ```tsx
|
|
302
|
+
* import { BatteryEmpty1 } from 'magick-icons';
|
|
303
|
+
*
|
|
304
|
+
* <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Props for the BatteryEmpty11 icon component
|
|
311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
+
*/
|
|
313
|
+
interface BatteryEmpty11Props extends React.SVGProps<SVGSVGElement> {
|
|
314
|
+
size?: number | string;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* BatteryEmpty11 icon component
|
|
318
|
+
* @example
|
|
319
|
+
* ```tsx
|
|
320
|
+
* import { BatteryEmpty11 } from 'magick-icons';
|
|
321
|
+
*
|
|
322
|
+
* <BatteryEmpty11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
declare const BatteryEmpty11: React.ForwardRefExoticComponent<Omit<BatteryEmpty11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Props for the BatteryFull1 icon component
|
|
329
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
+
*/
|
|
331
|
+
interface BatteryFull1Props extends React.SVGProps<SVGSVGElement> {
|
|
332
|
+
size?: number | string;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* BatteryFull1 icon component
|
|
336
|
+
* @example
|
|
337
|
+
* ```tsx
|
|
338
|
+
* import { BatteryFull1 } from 'magick-icons';
|
|
339
|
+
*
|
|
340
|
+
* <BatteryFull1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
+
* ```
|
|
342
|
+
*/
|
|
343
|
+
declare const BatteryFull1: React.ForwardRefExoticComponent<Omit<BatteryFull1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
+
|
|
93
345
|
/**
|
|
94
346
|
* Props for the BookmarkFilled icon component
|
|
95
347
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,6 +882,42 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
630
882
|
*/
|
|
631
883
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
884
|
|
|
885
|
+
/**
|
|
886
|
+
* Props for the Icon3dcube1 icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* Icon3dcube1 icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { Icon3dcube1 } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* Props for the Icon3square1 icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* Icon3square1 icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { Icon3square1 } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
633
921
|
/**
|
|
634
922
|
* Props for the IconsaxAttachCircleBold icon component
|
|
635
923
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1170,4 +1458,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1170
1458
|
*/
|
|
1171
1459
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1172
1460
|
|
|
1173
|
-
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, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, 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, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, 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, Video, type VideoProps, X, type XProps };
|
|
1461
|
+
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, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, 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, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, 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, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, 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, 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,150 @@ 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
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Props for the BatteryCharging1 icon component
|
|
257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
+
*/
|
|
259
|
+
interface BatteryCharging1Props extends React.SVGProps<SVGSVGElement> {
|
|
260
|
+
size?: number | string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* BatteryCharging1 icon component
|
|
264
|
+
* @example
|
|
265
|
+
* ```tsx
|
|
266
|
+
* import { BatteryCharging1 } from 'magick-icons';
|
|
267
|
+
*
|
|
268
|
+
* <BatteryCharging1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
271
|
+
declare const BatteryCharging1: React.ForwardRefExoticComponent<Omit<BatteryCharging1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* Props for the BatteryDisable1 icon component
|
|
275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
+
*/
|
|
277
|
+
interface BatteryDisable1Props extends React.SVGProps<SVGSVGElement> {
|
|
278
|
+
size?: number | string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* BatteryDisable1 icon component
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { BatteryDisable1 } from 'magick-icons';
|
|
285
|
+
*
|
|
286
|
+
* <BatteryDisable1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
declare const BatteryDisable1: React.ForwardRefExoticComponent<Omit<BatteryDisable1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Props for the BatteryEmpty1 icon component
|
|
293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
+
*/
|
|
295
|
+
interface BatteryEmpty1Props extends React.SVGProps<SVGSVGElement> {
|
|
296
|
+
size?: number | string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* BatteryEmpty1 icon component
|
|
300
|
+
* @example
|
|
301
|
+
* ```tsx
|
|
302
|
+
* import { BatteryEmpty1 } from 'magick-icons';
|
|
303
|
+
*
|
|
304
|
+
* <BatteryEmpty1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
declare const BatteryEmpty1: React.ForwardRefExoticComponent<Omit<BatteryEmpty1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Props for the BatteryEmpty11 icon component
|
|
311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
+
*/
|
|
313
|
+
interface BatteryEmpty11Props extends React.SVGProps<SVGSVGElement> {
|
|
314
|
+
size?: number | string;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* BatteryEmpty11 icon component
|
|
318
|
+
* @example
|
|
319
|
+
* ```tsx
|
|
320
|
+
* import { BatteryEmpty11 } from 'magick-icons';
|
|
321
|
+
*
|
|
322
|
+
* <BatteryEmpty11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
declare const BatteryEmpty11: React.ForwardRefExoticComponent<Omit<BatteryEmpty11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Props for the BatteryFull1 icon component
|
|
329
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
+
*/
|
|
331
|
+
interface BatteryFull1Props extends React.SVGProps<SVGSVGElement> {
|
|
332
|
+
size?: number | string;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* BatteryFull1 icon component
|
|
336
|
+
* @example
|
|
337
|
+
* ```tsx
|
|
338
|
+
* import { BatteryFull1 } from 'magick-icons';
|
|
339
|
+
*
|
|
340
|
+
* <BatteryFull1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
+
* ```
|
|
342
|
+
*/
|
|
343
|
+
declare const BatteryFull1: React.ForwardRefExoticComponent<Omit<BatteryFull1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
+
|
|
93
345
|
/**
|
|
94
346
|
* Props for the BookmarkFilled icon component
|
|
95
347
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,6 +882,42 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
630
882
|
*/
|
|
631
883
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
884
|
|
|
885
|
+
/**
|
|
886
|
+
* Props for the Icon3dcube1 icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* Icon3dcube1 icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { Icon3dcube1 } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* Props for the Icon3square1 icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* Icon3square1 icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { Icon3square1 } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
633
921
|
/**
|
|
634
922
|
* Props for the IconsaxAttachCircleBold icon component
|
|
635
923
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1170,4 +1458,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1170
1458
|
*/
|
|
1171
1459
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1172
1460
|
|
|
1173
|
-
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, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, 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, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, 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, Video, type VideoProps, X, type XProps };
|
|
1461
|
+
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, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, 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, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, 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, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, 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, Video, type VideoProps, X, type XProps };
|