magick-icons 0.1.175 → 0.1.177
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 +103 -337
- package/index.d.ts +103 -337
- package/index.js +194 -334
- package/index.js.map +1 -1
- package/index.mjs +198 -325
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Props for the
|
|
4
|
+
* Props for the AiIcon icon component
|
|
5
5
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
6
|
*/
|
|
7
|
-
interface
|
|
7
|
+
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
8
8
|
size?: number | string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* AiIcon icon component
|
|
12
12
|
* @example
|
|
13
13
|
* ```tsx
|
|
14
|
-
* import {
|
|
14
|
+
* import { AiIcon } from 'magick-icons';
|
|
15
15
|
*
|
|
16
|
-
* <
|
|
16
|
+
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
declare const
|
|
19
|
+
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
* Props for the
|
|
22
|
+
* Props for the BookmarkFilled icon component
|
|
23
23
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
24
|
*/
|
|
25
|
-
interface
|
|
25
|
+
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
26
26
|
size?: number | string;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* BookmarkFilled icon component
|
|
30
30
|
* @example
|
|
31
31
|
* ```tsx
|
|
32
|
-
* import {
|
|
32
|
+
* import { BookmarkFilled } from 'magick-icons';
|
|
33
33
|
*
|
|
34
|
-
* <
|
|
34
|
+
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
37
|
-
declare const
|
|
37
|
+
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* Props for the
|
|
40
|
+
* Props for the ChatFullScreen icon component
|
|
41
41
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
42
|
*/
|
|
43
|
-
interface
|
|
43
|
+
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
44
44
|
size?: number | string;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* ChatFullScreen icon component
|
|
48
48
|
* @example
|
|
49
49
|
* ```tsx
|
|
50
|
-
* import {
|
|
50
|
+
* import { ChatFullScreen } from 'magick-icons';
|
|
51
51
|
*
|
|
52
|
-
* <
|
|
52
|
+
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
53
|
* ```
|
|
54
54
|
*/
|
|
55
|
-
declare const
|
|
55
|
+
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
|
-
* Props for the
|
|
58
|
+
* Props for the ChatMaximize icon component
|
|
59
59
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
60
|
*/
|
|
61
|
-
interface
|
|
61
|
+
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
62
62
|
size?: number | string;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* ChatMaximize icon component
|
|
66
66
|
* @example
|
|
67
67
|
* ```tsx
|
|
68
|
-
* import {
|
|
68
|
+
* import { ChatMaximize } from 'magick-icons';
|
|
69
69
|
*
|
|
70
|
-
* <
|
|
70
|
+
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
71
|
* ```
|
|
72
72
|
*/
|
|
73
|
-
declare const
|
|
73
|
+
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
74
|
|
|
75
75
|
/**
|
|
76
|
-
* Props for the
|
|
76
|
+
* Props for the ChatMinimize icon component
|
|
77
77
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
78
|
*/
|
|
79
|
-
interface
|
|
79
|
+
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
80
80
|
size?: number | string;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* ChatMinimize icon component
|
|
84
84
|
* @example
|
|
85
85
|
* ```tsx
|
|
86
|
-
* import {
|
|
86
|
+
* import { ChatMinimize } from 'magick-icons';
|
|
87
87
|
*
|
|
88
|
-
* <
|
|
88
|
+
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
89
|
* ```
|
|
90
90
|
*/
|
|
91
|
-
declare const
|
|
91
|
+
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
92
|
|
|
93
93
|
/**
|
|
94
94
|
* Props for the ChevronDown icon component
|
|
@@ -181,94 +181,22 @@ interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
|
181
181
|
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
182
|
|
|
183
183
|
/**
|
|
184
|
-
* Props for the
|
|
184
|
+
* Props for the Doc icon component
|
|
185
185
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
186
|
*/
|
|
187
|
-
interface
|
|
187
|
+
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
188
188
|
size?: number | string;
|
|
189
189
|
}
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* Doc icon component
|
|
192
192
|
* @example
|
|
193
193
|
* ```tsx
|
|
194
|
-
* import {
|
|
194
|
+
* import { Doc } from 'magick-icons';
|
|
195
195
|
*
|
|
196
|
-
* <
|
|
196
|
+
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
197
197
|
* ```
|
|
198
198
|
*/
|
|
199
|
-
declare const
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* Props for the CloseCircle1 icon component
|
|
203
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
204
|
-
*/
|
|
205
|
-
interface CloseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
206
|
-
size?: number | string;
|
|
207
|
-
}
|
|
208
|
-
/**
|
|
209
|
-
* CloseCircle1 icon component
|
|
210
|
-
* @example
|
|
211
|
-
* ```tsx
|
|
212
|
-
* import { CloseCircle1 } from 'magick-icons';
|
|
213
|
-
*
|
|
214
|
-
* <CloseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
215
|
-
* ```
|
|
216
|
-
*/
|
|
217
|
-
declare const CloseCircle1: React.ForwardRefExoticComponent<Omit<CloseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* Props for the DislikeBold icon component
|
|
221
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
-
*/
|
|
223
|
-
interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
224
|
-
size?: number | string;
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* DislikeBold icon component
|
|
228
|
-
* @example
|
|
229
|
-
* ```tsx
|
|
230
|
-
* import { DislikeBold } from 'magick-icons';
|
|
231
|
-
*
|
|
232
|
-
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
-
* ```
|
|
234
|
-
*/
|
|
235
|
-
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* Props for the DocumentTextBold icon component
|
|
239
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
-
*/
|
|
241
|
-
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
242
|
-
size?: number | string;
|
|
243
|
-
}
|
|
244
|
-
/**
|
|
245
|
-
* DocumentTextBold icon component
|
|
246
|
-
* @example
|
|
247
|
-
* ```tsx
|
|
248
|
-
* import { DocumentTextBold } from 'magick-icons';
|
|
249
|
-
*
|
|
250
|
-
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
251
|
-
* ```
|
|
252
|
-
*/
|
|
253
|
-
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
-
|
|
255
|
-
/**
|
|
256
|
-
* Props for the DocumentUpload icon component
|
|
257
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
-
*/
|
|
259
|
-
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
260
|
-
size?: number | string;
|
|
261
|
-
}
|
|
262
|
-
/**
|
|
263
|
-
* DocumentUpload icon component
|
|
264
|
-
* @example
|
|
265
|
-
* ```tsx
|
|
266
|
-
* import { DocumentUpload } from 'magick-icons';
|
|
267
|
-
*
|
|
268
|
-
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
-
* ```
|
|
270
|
-
*/
|
|
271
|
-
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
199
|
+
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
200
|
|
|
273
201
|
/**
|
|
274
202
|
* Props for the Enter icon component
|
|
@@ -289,94 +217,76 @@ interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
|
289
217
|
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
218
|
|
|
291
219
|
/**
|
|
292
|
-
* Props for the
|
|
220
|
+
* Props for the Excel icon component
|
|
293
221
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
222
|
*/
|
|
295
|
-
interface
|
|
223
|
+
interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
296
224
|
size?: number | string;
|
|
297
225
|
}
|
|
298
226
|
/**
|
|
299
|
-
*
|
|
227
|
+
* Excel icon component
|
|
300
228
|
* @example
|
|
301
229
|
* ```tsx
|
|
302
|
-
* import {
|
|
230
|
+
* import { Excel } from 'magick-icons';
|
|
303
231
|
*
|
|
304
|
-
* <
|
|
232
|
+
* <Excel size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
233
|
* ```
|
|
306
234
|
*/
|
|
307
|
-
declare const
|
|
235
|
+
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
236
|
|
|
309
237
|
/**
|
|
310
|
-
* Props for the
|
|
238
|
+
* Props for the File icon component
|
|
311
239
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
240
|
*/
|
|
313
|
-
interface
|
|
241
|
+
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
314
242
|
size?: number | string;
|
|
315
243
|
}
|
|
316
244
|
/**
|
|
317
|
-
*
|
|
245
|
+
* File icon component
|
|
318
246
|
* @example
|
|
319
247
|
* ```tsx
|
|
320
|
-
* import {
|
|
248
|
+
* import { File } from 'magick-icons';
|
|
321
249
|
*
|
|
322
|
-
* <
|
|
250
|
+
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
251
|
* ```
|
|
324
252
|
*/
|
|
325
|
-
declare const
|
|
253
|
+
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
254
|
|
|
327
255
|
/**
|
|
328
|
-
* Props for the
|
|
256
|
+
* Props for the FolderDrawerOpenAddBold icon component
|
|
329
257
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
258
|
*/
|
|
331
|
-
interface
|
|
259
|
+
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
332
260
|
size?: number | string;
|
|
333
261
|
}
|
|
334
262
|
/**
|
|
335
|
-
*
|
|
263
|
+
* FolderDrawerOpenAddBold icon component
|
|
336
264
|
* @example
|
|
337
265
|
* ```tsx
|
|
338
|
-
* import {
|
|
266
|
+
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
339
267
|
*
|
|
340
|
-
* <
|
|
268
|
+
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
269
|
* ```
|
|
342
270
|
*/
|
|
343
|
-
declare const
|
|
271
|
+
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
272
|
|
|
345
273
|
/**
|
|
346
|
-
* Props for the
|
|
274
|
+
* Props for the GeneralMagicko icon component
|
|
347
275
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
348
276
|
*/
|
|
349
|
-
interface
|
|
277
|
+
interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
350
278
|
size?: number | string;
|
|
351
279
|
}
|
|
352
280
|
/**
|
|
353
|
-
*
|
|
281
|
+
* GeneralMagicko icon component
|
|
354
282
|
* @example
|
|
355
283
|
* ```tsx
|
|
356
|
-
* import {
|
|
284
|
+
* import { GeneralMagicko } from 'magick-icons';
|
|
357
285
|
*
|
|
358
|
-
* <
|
|
286
|
+
* <GeneralMagicko size={24} className="text-blue-500" strokeWidth={2} />
|
|
359
287
|
* ```
|
|
360
288
|
*/
|
|
361
|
-
declare const
|
|
362
|
-
|
|
363
|
-
/**
|
|
364
|
-
* Props for the FolderOpenBold icon component
|
|
365
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
366
|
-
*/
|
|
367
|
-
interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
368
|
-
size?: number | string;
|
|
369
|
-
}
|
|
370
|
-
/**
|
|
371
|
-
* FolderOpenBold icon component
|
|
372
|
-
* @example
|
|
373
|
-
* ```tsx
|
|
374
|
-
* import { FolderOpenBold } from 'magick-icons';
|
|
375
|
-
*
|
|
376
|
-
* <FolderOpenBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
377
|
-
* ```
|
|
378
|
-
*/
|
|
379
|
-
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
289
|
+
declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
290
|
|
|
381
291
|
/**
|
|
382
292
|
* Props for the GripVertical icon component
|
|
@@ -397,22 +307,22 @@ interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
|
397
307
|
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
308
|
|
|
399
309
|
/**
|
|
400
|
-
* Props for the
|
|
310
|
+
* Props for the Hr icon component
|
|
401
311
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
402
312
|
*/
|
|
403
|
-
interface
|
|
313
|
+
interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
404
314
|
size?: number | string;
|
|
405
315
|
}
|
|
406
316
|
/**
|
|
407
|
-
*
|
|
317
|
+
* Hr icon component
|
|
408
318
|
* @example
|
|
409
319
|
* ```tsx
|
|
410
|
-
* import {
|
|
320
|
+
* import { Hr } from 'magick-icons';
|
|
411
321
|
*
|
|
412
|
-
* <
|
|
322
|
+
* <Hr size={24} className="text-blue-500" strokeWidth={2} />
|
|
413
323
|
* ```
|
|
414
324
|
*/
|
|
415
|
-
declare const
|
|
325
|
+
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
326
|
|
|
417
327
|
/**
|
|
418
328
|
* Props for the HrSystem icon component
|
|
@@ -432,60 +342,6 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
432
342
|
*/
|
|
433
343
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
344
|
|
|
435
|
-
/**
|
|
436
|
-
* Props for the IconsaxAttachCircleBold icon component
|
|
437
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
438
|
-
*/
|
|
439
|
-
interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
440
|
-
size?: number | string;
|
|
441
|
-
}
|
|
442
|
-
/**
|
|
443
|
-
* IconsaxAttachCircleBold icon component
|
|
444
|
-
* @example
|
|
445
|
-
* ```tsx
|
|
446
|
-
* import { IconsaxAttachCircleBold } from 'magick-icons';
|
|
447
|
-
*
|
|
448
|
-
* <IconsaxAttachCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
449
|
-
* ```
|
|
450
|
-
*/
|
|
451
|
-
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
452
|
-
|
|
453
|
-
/**
|
|
454
|
-
* Props for the IconsaxPenBrushBold icon component
|
|
455
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
456
|
-
*/
|
|
457
|
-
interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
458
|
-
size?: number | string;
|
|
459
|
-
}
|
|
460
|
-
/**
|
|
461
|
-
* IconsaxPenBrushBold icon component
|
|
462
|
-
* @example
|
|
463
|
-
* ```tsx
|
|
464
|
-
* import { IconsaxPenBrushBold } from 'magick-icons';
|
|
465
|
-
*
|
|
466
|
-
* <IconsaxPenBrushBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
467
|
-
* ```
|
|
468
|
-
*/
|
|
469
|
-
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
|
-
|
|
471
|
-
/**
|
|
472
|
-
* Props for the IconsaxVideoCameraBold icon component
|
|
473
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
474
|
-
*/
|
|
475
|
-
interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
476
|
-
size?: number | string;
|
|
477
|
-
}
|
|
478
|
-
/**
|
|
479
|
-
* IconsaxVideoCameraBold icon component
|
|
480
|
-
* @example
|
|
481
|
-
* ```tsx
|
|
482
|
-
* import { IconsaxVideoCameraBold } from 'magick-icons';
|
|
483
|
-
*
|
|
484
|
-
* <IconsaxVideoCameraBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
485
|
-
* ```
|
|
486
|
-
*/
|
|
487
|
-
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
|
-
|
|
489
345
|
/**
|
|
490
346
|
* Props for the IconsaxWord icon component
|
|
491
347
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -505,58 +361,22 @@ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
|
505
361
|
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
362
|
|
|
507
363
|
/**
|
|
508
|
-
* Props for the
|
|
509
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
-
*/
|
|
511
|
-
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
-
size?: number | string;
|
|
513
|
-
}
|
|
514
|
-
/**
|
|
515
|
-
* InfoCircleBold icon component
|
|
516
|
-
* @example
|
|
517
|
-
* ```tsx
|
|
518
|
-
* import { InfoCircleBold } from 'magick-icons';
|
|
519
|
-
*
|
|
520
|
-
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
-
* ```
|
|
522
|
-
*/
|
|
523
|
-
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
-
|
|
525
|
-
/**
|
|
526
|
-
* Props for the Legal icon component
|
|
527
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
528
|
-
*/
|
|
529
|
-
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
530
|
-
size?: number | string;
|
|
531
|
-
}
|
|
532
|
-
/**
|
|
533
|
-
* Legal icon component
|
|
534
|
-
* @example
|
|
535
|
-
* ```tsx
|
|
536
|
-
* import { Legal } from 'magick-icons';
|
|
537
|
-
*
|
|
538
|
-
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
539
|
-
* ```
|
|
540
|
-
*/
|
|
541
|
-
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
|
-
|
|
543
|
-
/**
|
|
544
|
-
* Props for the LikeBold icon component
|
|
364
|
+
* Props for the InProgress icon component
|
|
545
365
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
546
366
|
*/
|
|
547
|
-
interface
|
|
367
|
+
interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
548
368
|
size?: number | string;
|
|
549
369
|
}
|
|
550
370
|
/**
|
|
551
|
-
*
|
|
371
|
+
* InProgress icon component
|
|
552
372
|
* @example
|
|
553
373
|
* ```tsx
|
|
554
|
-
* import {
|
|
374
|
+
* import { InProgress } from 'magick-icons';
|
|
555
375
|
*
|
|
556
|
-
* <
|
|
376
|
+
* <InProgress size={24} className="text-blue-500" strokeWidth={2} />
|
|
557
377
|
* ```
|
|
558
378
|
*/
|
|
559
|
-
declare const
|
|
379
|
+
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
380
|
|
|
561
381
|
/**
|
|
562
382
|
* Props for the Line icon component
|
|
@@ -576,24 +396,6 @@ interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
|
576
396
|
*/
|
|
577
397
|
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
398
|
|
|
579
|
-
/**
|
|
580
|
-
* Props for the LinkSquare icon component
|
|
581
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
582
|
-
*/
|
|
583
|
-
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
-
size?: number | string;
|
|
585
|
-
}
|
|
586
|
-
/**
|
|
587
|
-
* LinkSquare icon component
|
|
588
|
-
* @example
|
|
589
|
-
* ```tsx
|
|
590
|
-
* import { LinkSquare } from 'magick-icons';
|
|
591
|
-
*
|
|
592
|
-
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
593
|
-
* ```
|
|
594
|
-
*/
|
|
595
|
-
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
|
-
|
|
597
399
|
/**
|
|
598
400
|
* Props for the List icon component
|
|
599
401
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -666,24 +468,6 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
666
468
|
*/
|
|
667
469
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
470
|
|
|
669
|
-
/**
|
|
670
|
-
* Props for the MagickPotion icon component
|
|
671
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
|
-
*/
|
|
673
|
-
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
674
|
-
size?: number | string;
|
|
675
|
-
}
|
|
676
|
-
/**
|
|
677
|
-
* MagickPotion icon component
|
|
678
|
-
* @example
|
|
679
|
-
* ```tsx
|
|
680
|
-
* import { MagickPotion } from 'magick-icons';
|
|
681
|
-
*
|
|
682
|
-
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
|
-
* ```
|
|
684
|
-
*/
|
|
685
|
-
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
|
-
|
|
687
471
|
/**
|
|
688
472
|
* Props for the MagickoCheck icon component
|
|
689
473
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -703,76 +487,76 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
703
487
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
488
|
|
|
705
489
|
/**
|
|
706
|
-
* Props for the
|
|
490
|
+
* Props for the NotiDot icon component
|
|
707
491
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
492
|
*/
|
|
709
|
-
interface
|
|
493
|
+
interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
710
494
|
size?: number | string;
|
|
711
495
|
}
|
|
712
496
|
/**
|
|
713
|
-
*
|
|
497
|
+
* NotiDot icon component
|
|
714
498
|
* @example
|
|
715
499
|
* ```tsx
|
|
716
|
-
* import {
|
|
500
|
+
* import { NotiDot } from 'magick-icons';
|
|
717
501
|
*
|
|
718
|
-
* <
|
|
502
|
+
* <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
503
|
* ```
|
|
720
504
|
*/
|
|
721
|
-
declare const
|
|
505
|
+
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
506
|
|
|
723
507
|
/**
|
|
724
|
-
* Props for the
|
|
508
|
+
* Props for the PauseSquare icon component
|
|
725
509
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
510
|
*/
|
|
727
|
-
interface
|
|
511
|
+
interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
728
512
|
size?: number | string;
|
|
729
513
|
}
|
|
730
514
|
/**
|
|
731
|
-
*
|
|
515
|
+
* PauseSquare icon component
|
|
732
516
|
* @example
|
|
733
517
|
* ```tsx
|
|
734
|
-
* import {
|
|
518
|
+
* import { PauseSquare } from 'magick-icons';
|
|
735
519
|
*
|
|
736
|
-
* <
|
|
520
|
+
* <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
521
|
* ```
|
|
738
522
|
*/
|
|
739
|
-
declare const
|
|
523
|
+
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
524
|
|
|
741
525
|
/**
|
|
742
|
-
* Props for the
|
|
526
|
+
* Props for the Pdf icon component
|
|
743
527
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
528
|
*/
|
|
745
|
-
interface
|
|
529
|
+
interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
746
530
|
size?: number | string;
|
|
747
531
|
}
|
|
748
532
|
/**
|
|
749
|
-
*
|
|
533
|
+
* Pdf icon component
|
|
750
534
|
* @example
|
|
751
535
|
* ```tsx
|
|
752
|
-
* import {
|
|
536
|
+
* import { Pdf } from 'magick-icons';
|
|
753
537
|
*
|
|
754
|
-
* <
|
|
538
|
+
* <Pdf size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
539
|
* ```
|
|
756
540
|
*/
|
|
757
|
-
declare const
|
|
541
|
+
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
542
|
|
|
759
543
|
/**
|
|
760
|
-
* Props for the
|
|
544
|
+
* Props for the PlayFilled icon component
|
|
761
545
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
546
|
*/
|
|
763
|
-
interface
|
|
547
|
+
interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
764
548
|
size?: number | string;
|
|
765
549
|
}
|
|
766
550
|
/**
|
|
767
|
-
*
|
|
551
|
+
* PlayFilled icon component
|
|
768
552
|
* @example
|
|
769
553
|
* ```tsx
|
|
770
|
-
* import {
|
|
554
|
+
* import { PlayFilled } from 'magick-icons';
|
|
771
555
|
*
|
|
772
|
-
* <
|
|
556
|
+
* <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
557
|
* ```
|
|
774
558
|
*/
|
|
775
|
-
declare const
|
|
559
|
+
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
560
|
|
|
777
561
|
/**
|
|
778
562
|
* Props for the Signature icon component
|
|
@@ -793,22 +577,22 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
793
577
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
578
|
|
|
795
579
|
/**
|
|
796
|
-
* Props for the
|
|
580
|
+
* Props for the SperateDot icon component
|
|
797
581
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
582
|
*/
|
|
799
|
-
interface
|
|
583
|
+
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
800
584
|
size?: number | string;
|
|
801
585
|
}
|
|
802
586
|
/**
|
|
803
|
-
*
|
|
587
|
+
* SperateDot icon component
|
|
804
588
|
* @example
|
|
805
589
|
* ```tsx
|
|
806
|
-
* import {
|
|
590
|
+
* import { SperateDot } from 'magick-icons';
|
|
807
591
|
*
|
|
808
|
-
* <
|
|
592
|
+
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
593
|
* ```
|
|
810
594
|
*/
|
|
811
|
-
declare const
|
|
595
|
+
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
596
|
|
|
813
597
|
/**
|
|
814
598
|
* Props for the Strikethrough icon component
|
|
@@ -828,24 +612,6 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
828
612
|
*/
|
|
829
613
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
614
|
|
|
831
|
-
/**
|
|
832
|
-
* Props for the Video icon component
|
|
833
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
-
*/
|
|
835
|
-
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
836
|
-
size?: number | string;
|
|
837
|
-
}
|
|
838
|
-
/**
|
|
839
|
-
* Video icon component
|
|
840
|
-
* @example
|
|
841
|
-
* ```tsx
|
|
842
|
-
* import { Video } from 'magick-icons';
|
|
843
|
-
*
|
|
844
|
-
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
-
* ```
|
|
846
|
-
*/
|
|
847
|
-
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
-
|
|
849
615
|
/**
|
|
850
616
|
* Props for the X icon component
|
|
851
617
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -864,4 +630,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
864
630
|
*/
|
|
865
631
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
632
|
|
|
867
|
-
export {
|
|
633
|
+
export { AiIcon, type AiIconProps, BookmarkFilled, type BookmarkFilledProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Doc, type DocProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, Hr, type HrProps, HrSystem, type HrSystemProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, Line, type LineProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickoCheck, type MagickoCheckProps, NotiDot, type NotiDotProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, Strikethrough, type StrikethroughProps, X, type XProps };
|