magick-icons 0.1.200 → 0.1.201
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 +181 -1
- package/index.d.ts +181 -1
- package/index.js +298 -166
- package/index.js.map +1 -1
- package/index.mjs +289 -167
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -18,6 +18,78 @@ interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18
18
|
*/
|
|
19
19
|
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
|
+
/**
|
|
22
|
+
* Props for the ArchiveBold icon component
|
|
23
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
+
*/
|
|
25
|
+
interface ArchiveBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
26
|
+
size?: number | string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* ArchiveBold icon component
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* import { ArchiveBold } from 'magick-icons';
|
|
33
|
+
*
|
|
34
|
+
* <ArchiveBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare const ArchiveBold: React.ForwardRefExoticComponent<Omit<ArchiveBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Props for the ArrowDownBold icon component
|
|
41
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
+
*/
|
|
43
|
+
interface ArrowDownBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
44
|
+
size?: number | string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* ArrowDownBold icon component
|
|
48
|
+
* @example
|
|
49
|
+
* ```tsx
|
|
50
|
+
* import { ArrowDownBold } from 'magick-icons';
|
|
51
|
+
*
|
|
52
|
+
* <ArrowDownBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
declare const ArrowDownBold: React.ForwardRefExoticComponent<Omit<ArrowDownBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Props for the ArrowRightBold icon component
|
|
59
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
|
+
*/
|
|
61
|
+
interface ArrowRightBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
62
|
+
size?: number | string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* ArrowRightBold icon component
|
|
66
|
+
* @example
|
|
67
|
+
* ```tsx
|
|
68
|
+
* import { ArrowRightBold } from 'magick-icons';
|
|
69
|
+
*
|
|
70
|
+
* <ArrowRightBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
|
+
* ```
|
|
72
|
+
*/
|
|
73
|
+
declare const ArrowRightBold: React.ForwardRefExoticComponent<Omit<ArrowRightBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Props for the ArrowUpBold icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* ArrowUpBold icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { ArrowUpBold } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <ArrowUpBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
21
93
|
/**
|
|
22
94
|
* Props for the BookmarkFilled icon component
|
|
23
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -36,6 +108,24 @@ interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
|
36
108
|
*/
|
|
37
109
|
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
110
|
|
|
111
|
+
/**
|
|
112
|
+
* Props for the Calendar icon component
|
|
113
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
|
+
*/
|
|
115
|
+
interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
116
|
+
size?: number | string;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Calendar icon component
|
|
120
|
+
* @example
|
|
121
|
+
* ```tsx
|
|
122
|
+
* import { Calendar } from 'magick-icons';
|
|
123
|
+
*
|
|
124
|
+
* <Calendar size={24} className="text-blue-500" strokeWidth={2} />
|
|
125
|
+
* ```
|
|
126
|
+
*/
|
|
127
|
+
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
|
|
39
129
|
/**
|
|
40
130
|
* Props for the ChatFullScreen icon component
|
|
41
131
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -180,6 +270,60 @@ interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
|
180
270
|
*/
|
|
181
271
|
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
272
|
|
|
273
|
+
/**
|
|
274
|
+
* Props for the CircleCheckFill icon component
|
|
275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
+
*/
|
|
277
|
+
interface CircleCheckFillProps extends React.SVGProps<SVGSVGElement> {
|
|
278
|
+
size?: number | string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* CircleCheckFill icon component
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { CircleCheckFill } from 'magick-icons';
|
|
285
|
+
*
|
|
286
|
+
* <CircleCheckFill size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
declare const CircleCheckFill: React.ForwardRefExoticComponent<Omit<CircleCheckFillProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Props for the CloseCircle1 icon component
|
|
293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
+
*/
|
|
295
|
+
interface CloseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
296
|
+
size?: number | string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* CloseCircle1 icon component
|
|
300
|
+
* @example
|
|
301
|
+
* ```tsx
|
|
302
|
+
* import { CloseCircle1 } from 'magick-icons';
|
|
303
|
+
*
|
|
304
|
+
* <CloseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
declare const CloseCircle1: React.ForwardRefExoticComponent<Omit<CloseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Props for the DislikeBold icon component
|
|
311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
+
*/
|
|
313
|
+
interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
314
|
+
size?: number | string;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* DislikeBold icon component
|
|
318
|
+
* @example
|
|
319
|
+
* ```tsx
|
|
320
|
+
* import { DislikeBold } from 'magick-icons';
|
|
321
|
+
*
|
|
322
|
+
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
+
|
|
183
327
|
/**
|
|
184
328
|
* Props for the Doc icon component
|
|
185
329
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -198,6 +342,42 @@ interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
|
198
342
|
*/
|
|
199
343
|
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
344
|
|
|
345
|
+
/**
|
|
346
|
+
* Props for the DocumentTextBold icon component
|
|
347
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
348
|
+
*/
|
|
349
|
+
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
350
|
+
size?: number | string;
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* DocumentTextBold icon component
|
|
354
|
+
* @example
|
|
355
|
+
* ```tsx
|
|
356
|
+
* import { DocumentTextBold } from 'magick-icons';
|
|
357
|
+
*
|
|
358
|
+
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
359
|
+
* ```
|
|
360
|
+
*/
|
|
361
|
+
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Props for the DocumentUpload icon component
|
|
365
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
366
|
+
*/
|
|
367
|
+
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
368
|
+
size?: number | string;
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* DocumentUpload icon component
|
|
372
|
+
* @example
|
|
373
|
+
* ```tsx
|
|
374
|
+
* import { DocumentUpload } from 'magick-icons';
|
|
375
|
+
*
|
|
376
|
+
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
377
|
+
* ```
|
|
378
|
+
*/
|
|
379
|
+
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
|
+
|
|
201
381
|
/**
|
|
202
382
|
* Props for the Enter icon component
|
|
203
383
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,4 +810,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
630
810
|
*/
|
|
631
811
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
812
|
|
|
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 };
|
|
813
|
+
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, 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 };
|
package/index.d.ts
CHANGED
|
@@ -18,6 +18,78 @@ interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18
18
|
*/
|
|
19
19
|
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
20
20
|
|
|
21
|
+
/**
|
|
22
|
+
* Props for the ArchiveBold icon component
|
|
23
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
24
|
+
*/
|
|
25
|
+
interface ArchiveBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
26
|
+
size?: number | string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* ArchiveBold icon component
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* import { ArchiveBold } from 'magick-icons';
|
|
33
|
+
*
|
|
34
|
+
* <ArchiveBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
declare const ArchiveBold: React.ForwardRefExoticComponent<Omit<ArchiveBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Props for the ArrowDownBold icon component
|
|
41
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
42
|
+
*/
|
|
43
|
+
interface ArrowDownBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
44
|
+
size?: number | string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* ArrowDownBold icon component
|
|
48
|
+
* @example
|
|
49
|
+
* ```tsx
|
|
50
|
+
* import { ArrowDownBold } from 'magick-icons';
|
|
51
|
+
*
|
|
52
|
+
* <ArrowDownBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
declare const ArrowDownBold: React.ForwardRefExoticComponent<Omit<ArrowDownBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Props for the ArrowRightBold icon component
|
|
59
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
60
|
+
*/
|
|
61
|
+
interface ArrowRightBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
62
|
+
size?: number | string;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* ArrowRightBold icon component
|
|
66
|
+
* @example
|
|
67
|
+
* ```tsx
|
|
68
|
+
* import { ArrowRightBold } from 'magick-icons';
|
|
69
|
+
*
|
|
70
|
+
* <ArrowRightBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
71
|
+
* ```
|
|
72
|
+
*/
|
|
73
|
+
declare const ArrowRightBold: React.ForwardRefExoticComponent<Omit<ArrowRightBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Props for the ArrowUpBold icon component
|
|
77
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
78
|
+
*/
|
|
79
|
+
interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
80
|
+
size?: number | string;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* ArrowUpBold icon component
|
|
84
|
+
* @example
|
|
85
|
+
* ```tsx
|
|
86
|
+
* import { ArrowUpBold } from 'magick-icons';
|
|
87
|
+
*
|
|
88
|
+
* <ArrowUpBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
|
|
21
93
|
/**
|
|
22
94
|
* Props for the BookmarkFilled icon component
|
|
23
95
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -36,6 +108,24 @@ interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
|
36
108
|
*/
|
|
37
109
|
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
38
110
|
|
|
111
|
+
/**
|
|
112
|
+
* Props for the Calendar icon component
|
|
113
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
114
|
+
*/
|
|
115
|
+
interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
116
|
+
size?: number | string;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Calendar icon component
|
|
120
|
+
* @example
|
|
121
|
+
* ```tsx
|
|
122
|
+
* import { Calendar } from 'magick-icons';
|
|
123
|
+
*
|
|
124
|
+
* <Calendar size={24} className="text-blue-500" strokeWidth={2} />
|
|
125
|
+
* ```
|
|
126
|
+
*/
|
|
127
|
+
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
|
|
39
129
|
/**
|
|
40
130
|
* Props for the ChatFullScreen icon component
|
|
41
131
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -180,6 +270,60 @@ interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
|
180
270
|
*/
|
|
181
271
|
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
272
|
|
|
273
|
+
/**
|
|
274
|
+
* Props for the CircleCheckFill icon component
|
|
275
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
276
|
+
*/
|
|
277
|
+
interface CircleCheckFillProps extends React.SVGProps<SVGSVGElement> {
|
|
278
|
+
size?: number | string;
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* CircleCheckFill icon component
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { CircleCheckFill } from 'magick-icons';
|
|
285
|
+
*
|
|
286
|
+
* <CircleCheckFill size={24} className="text-blue-500" strokeWidth={2} />
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
declare const CircleCheckFill: React.ForwardRefExoticComponent<Omit<CircleCheckFillProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* Props for the CloseCircle1 icon component
|
|
293
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
294
|
+
*/
|
|
295
|
+
interface CloseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
296
|
+
size?: number | string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* CloseCircle1 icon component
|
|
300
|
+
* @example
|
|
301
|
+
* ```tsx
|
|
302
|
+
* import { CloseCircle1 } from 'magick-icons';
|
|
303
|
+
*
|
|
304
|
+
* <CloseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
declare const CloseCircle1: React.ForwardRefExoticComponent<Omit<CloseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* Props for the DislikeBold icon component
|
|
311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
312
|
+
*/
|
|
313
|
+
interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
314
|
+
size?: number | string;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* DislikeBold icon component
|
|
318
|
+
* @example
|
|
319
|
+
* ```tsx
|
|
320
|
+
* import { DislikeBold } from 'magick-icons';
|
|
321
|
+
*
|
|
322
|
+
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
326
|
+
|
|
183
327
|
/**
|
|
184
328
|
* Props for the Doc icon component
|
|
185
329
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -198,6 +342,42 @@ interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
|
198
342
|
*/
|
|
199
343
|
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
344
|
|
|
345
|
+
/**
|
|
346
|
+
* Props for the DocumentTextBold icon component
|
|
347
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
348
|
+
*/
|
|
349
|
+
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
350
|
+
size?: number | string;
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* DocumentTextBold icon component
|
|
354
|
+
* @example
|
|
355
|
+
* ```tsx
|
|
356
|
+
* import { DocumentTextBold } from 'magick-icons';
|
|
357
|
+
*
|
|
358
|
+
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
359
|
+
* ```
|
|
360
|
+
*/
|
|
361
|
+
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Props for the DocumentUpload icon component
|
|
365
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
366
|
+
*/
|
|
367
|
+
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
368
|
+
size?: number | string;
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* DocumentUpload icon component
|
|
372
|
+
* @example
|
|
373
|
+
* ```tsx
|
|
374
|
+
* import { DocumentUpload } from 'magick-icons';
|
|
375
|
+
*
|
|
376
|
+
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
377
|
+
* ```
|
|
378
|
+
*/
|
|
379
|
+
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
|
+
|
|
201
381
|
/**
|
|
202
382
|
* Props for the Enter icon component
|
|
203
383
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,4 +810,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
630
810
|
*/
|
|
631
811
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
812
|
|
|
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 };
|
|
813
|
+
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, 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 };
|