magick-icons 0.1.205 → 0.1.206
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 +307 -1
- package/index.d.ts +307 -1
- package/index.js +322 -73
- package/index.js.map +1 -1
- package/index.mjs +306 -74
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,95 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Props for the AiIcon icon component
|
|
5
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
6
|
+
*/
|
|
7
|
+
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
8
|
+
size?: number | string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* AiIcon icon component
|
|
12
|
+
* @example
|
|
13
|
+
* ```tsx
|
|
14
|
+
* import { AiIcon } from 'magick-icons';
|
|
15
|
+
*
|
|
16
|
+
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Props for the BookmarkFilled icon component
|
|
23
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
+
*/
|
|
25
|
+
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
26
|
+
size?: number | string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* BookmarkFilled icon component
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* import { BookmarkFilled } from 'magick-icons';
|
|
33
|
+
*
|
|
34
|
+
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Props for the ChatFullScreen icon component
|
|
41
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
+
*/
|
|
43
|
+
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
44
|
+
size?: number | string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* ChatFullScreen icon component
|
|
48
|
+
* @example
|
|
49
|
+
* ```tsx
|
|
50
|
+
* import { ChatFullScreen } from 'magick-icons';
|
|
51
|
+
*
|
|
52
|
+
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Props for the ChatMaximize icon component
|
|
59
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
|
+
*/
|
|
61
|
+
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
62
|
+
size?: number | string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* ChatMaximize icon component
|
|
66
|
+
* @example
|
|
67
|
+
* ```tsx
|
|
68
|
+
* import { ChatMaximize } from 'magick-icons';
|
|
69
|
+
*
|
|
70
|
+
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
|
+
* ```
|
|
72
|
+
*/
|
|
73
|
+
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Props for the ChatMinimize icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* ChatMinimize icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { ChatMinimize } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
3
93
|
/**
|
|
4
94
|
* Props for the ChevronDown icon component
|
|
5
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -90,6 +180,24 @@ interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
180
|
*/
|
|
91
181
|
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
182
|
|
|
183
|
+
/**
|
|
184
|
+
* Props for the Doc icon component
|
|
185
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
|
+
*/
|
|
187
|
+
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
188
|
+
size?: number | string;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* Doc icon component
|
|
192
|
+
* @example
|
|
193
|
+
* ```tsx
|
|
194
|
+
* import { Doc } from 'magick-icons';
|
|
195
|
+
*
|
|
196
|
+
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
197
|
+
* ```
|
|
198
|
+
*/
|
|
199
|
+
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
|
|
93
201
|
/**
|
|
94
202
|
* Props for the Enter icon component
|
|
95
203
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -108,6 +216,78 @@ interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
|
108
216
|
*/
|
|
109
217
|
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
218
|
|
|
219
|
+
/**
|
|
220
|
+
* Props for the Excel icon component
|
|
221
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
+
*/
|
|
223
|
+
interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
224
|
+
size?: number | string;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* Excel icon component
|
|
228
|
+
* @example
|
|
229
|
+
* ```tsx
|
|
230
|
+
* import { Excel } from 'magick-icons';
|
|
231
|
+
*
|
|
232
|
+
* <Excel size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
+
* ```
|
|
234
|
+
*/
|
|
235
|
+
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Props for the File icon component
|
|
239
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
+
*/
|
|
241
|
+
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
242
|
+
size?: number | string;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* File icon component
|
|
246
|
+
* @example
|
|
247
|
+
* ```tsx
|
|
248
|
+
* import { File } from 'magick-icons';
|
|
249
|
+
*
|
|
250
|
+
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
251
|
+
* ```
|
|
252
|
+
*/
|
|
253
|
+
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Props for the FolderDrawerOpenAddBold icon component
|
|
257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
+
*/
|
|
259
|
+
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
260
|
+
size?: number | string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* FolderDrawerOpenAddBold icon component
|
|
264
|
+
* @example
|
|
265
|
+
* ```tsx
|
|
266
|
+
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
267
|
+
*
|
|
268
|
+
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
271
|
+
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* Props for the GeneralMagicko icon component
|
|
275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
+
*/
|
|
277
|
+
interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
278
|
+
size?: number | string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* GeneralMagicko icon component
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { GeneralMagicko } from 'magick-icons';
|
|
285
|
+
*
|
|
286
|
+
* <GeneralMagicko size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
|
|
111
291
|
/**
|
|
112
292
|
* Props for the GripVertical icon component
|
|
113
293
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -126,6 +306,24 @@ interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
|
126
306
|
*/
|
|
127
307
|
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
308
|
|
|
309
|
+
/**
|
|
310
|
+
* Props for the Hr icon component
|
|
311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
+
*/
|
|
313
|
+
interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
314
|
+
size?: number | string;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* Hr icon component
|
|
318
|
+
* @example
|
|
319
|
+
* ```tsx
|
|
320
|
+
* import { Hr } from 'magick-icons';
|
|
321
|
+
*
|
|
322
|
+
* <Hr size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
+
|
|
129
327
|
/**
|
|
130
328
|
* Props for the HrSystem icon component
|
|
131
329
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -162,6 +360,24 @@ interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
|
162
360
|
*/
|
|
163
361
|
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
362
|
|
|
363
|
+
/**
|
|
364
|
+
* Props for the InProgress icon component
|
|
365
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
366
|
+
*/
|
|
367
|
+
interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
368
|
+
size?: number | string;
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* InProgress icon component
|
|
372
|
+
* @example
|
|
373
|
+
* ```tsx
|
|
374
|
+
* import { InProgress } from 'magick-icons';
|
|
375
|
+
*
|
|
376
|
+
* <InProgress size={24} className="text-blue-500" strokeWidth={2} />
|
|
377
|
+
* ```
|
|
378
|
+
*/
|
|
379
|
+
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
|
+
|
|
165
381
|
/**
|
|
166
382
|
* Props for the Line icon component
|
|
167
383
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -270,6 +486,78 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
270
486
|
*/
|
|
271
487
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
488
|
|
|
489
|
+
/**
|
|
490
|
+
* Props for the NotiDot icon component
|
|
491
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
492
|
+
*/
|
|
493
|
+
interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
494
|
+
size?: number | string;
|
|
495
|
+
}
|
|
496
|
+
/**
|
|
497
|
+
* NotiDot icon component
|
|
498
|
+
* @example
|
|
499
|
+
* ```tsx
|
|
500
|
+
* import { NotiDot } from 'magick-icons';
|
|
501
|
+
*
|
|
502
|
+
* <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
503
|
+
* ```
|
|
504
|
+
*/
|
|
505
|
+
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* Props for the PauseSquare icon component
|
|
509
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
+
*/
|
|
511
|
+
interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
+
size?: number | string;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* PauseSquare icon component
|
|
516
|
+
* @example
|
|
517
|
+
* ```tsx
|
|
518
|
+
* import { PauseSquare } from 'magick-icons';
|
|
519
|
+
*
|
|
520
|
+
* <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
+
* ```
|
|
522
|
+
*/
|
|
523
|
+
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* Props for the Pdf icon component
|
|
527
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
528
|
+
*/
|
|
529
|
+
interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
530
|
+
size?: number | string;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* Pdf icon component
|
|
534
|
+
* @example
|
|
535
|
+
* ```tsx
|
|
536
|
+
* import { Pdf } from 'magick-icons';
|
|
537
|
+
*
|
|
538
|
+
* <Pdf size={24} className="text-blue-500" strokeWidth={2} />
|
|
539
|
+
* ```
|
|
540
|
+
*/
|
|
541
|
+
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Props for the PlayFilled icon component
|
|
545
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
546
|
+
*/
|
|
547
|
+
interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
548
|
+
size?: number | string;
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
* PlayFilled icon component
|
|
552
|
+
* @example
|
|
553
|
+
* ```tsx
|
|
554
|
+
* import { PlayFilled } from 'magick-icons';
|
|
555
|
+
*
|
|
556
|
+
* <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
557
|
+
* ```
|
|
558
|
+
*/
|
|
559
|
+
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
|
+
|
|
273
561
|
/**
|
|
274
562
|
* Props for the Signature icon component
|
|
275
563
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -288,6 +576,24 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
288
576
|
*/
|
|
289
577
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
578
|
|
|
579
|
+
/**
|
|
580
|
+
* Props for the SperateDot icon component
|
|
581
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
582
|
+
*/
|
|
583
|
+
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
584
|
+
size?: number | string;
|
|
585
|
+
}
|
|
586
|
+
/**
|
|
587
|
+
* SperateDot icon component
|
|
588
|
+
* @example
|
|
589
|
+
* ```tsx
|
|
590
|
+
* import { SperateDot } from 'magick-icons';
|
|
591
|
+
*
|
|
592
|
+
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
593
|
+
* ```
|
|
594
|
+
*/
|
|
595
|
+
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
|
+
|
|
291
597
|
/**
|
|
292
598
|
* Props for the Strikethrough icon component
|
|
293
599
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -324,4 +630,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
324
630
|
*/
|
|
325
631
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
632
|
|
|
327
|
-
export { ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Enter, type EnterProps, GripVertical, type GripVerticalProps, HrSystem, type HrSystemProps, IconsaxWord, type IconsaxWordProps, Line, type LineProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickoCheck, type MagickoCheckProps, Signature, type SignatureProps, Strikethrough, type StrikethroughProps, X, type XProps };
|
|
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 };
|