magick-icons 0.1.138 → 0.1.140
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 +631 -1
- package/index.d.ts +631 -1
- package/index.js +647 -179
- package/index.js.map +1 -1
- package/index.mjs +613 -180
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
3
21
|
/**
|
|
4
22
|
* Props for the ArchiveBold icon component
|
|
5
23
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -72,6 +90,24 @@ interface ArrowUpBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
72
90
|
*/
|
|
73
91
|
declare const ArrowUpBold: React.ForwardRefExoticComponent<Omit<ArrowUpBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
92
|
|
|
93
|
+
/**
|
|
94
|
+
* Props for the BookmarkFilled icon component
|
|
95
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
+
*/
|
|
97
|
+
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
+
size?: number | string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* BookmarkFilled icon component
|
|
102
|
+
* @example
|
|
103
|
+
* ```tsx
|
|
104
|
+
* import { BookmarkFilled } from 'magick-icons';
|
|
105
|
+
*
|
|
106
|
+
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
|
|
75
111
|
/**
|
|
76
112
|
* Props for the Calendar icon component
|
|
77
113
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -90,6 +126,150 @@ interface CalendarProps extends React.SVGProps<SVGSVGElement> {
|
|
|
90
126
|
*/
|
|
91
127
|
declare const Calendar: React.ForwardRefExoticComponent<Omit<CalendarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
128
|
|
|
129
|
+
/**
|
|
130
|
+
* Props for the ChatFullScreen icon component
|
|
131
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
132
|
+
*/
|
|
133
|
+
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
134
|
+
size?: number | string;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* ChatFullScreen icon component
|
|
138
|
+
* @example
|
|
139
|
+
* ```tsx
|
|
140
|
+
* import { ChatFullScreen } from 'magick-icons';
|
|
141
|
+
*
|
|
142
|
+
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
143
|
+
* ```
|
|
144
|
+
*/
|
|
145
|
+
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Props for the ChatMaximize icon component
|
|
149
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
150
|
+
*/
|
|
151
|
+
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
152
|
+
size?: number | string;
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* ChatMaximize icon component
|
|
156
|
+
* @example
|
|
157
|
+
* ```tsx
|
|
158
|
+
* import { ChatMaximize } from 'magick-icons';
|
|
159
|
+
*
|
|
160
|
+
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
161
|
+
* ```
|
|
162
|
+
*/
|
|
163
|
+
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Props for the ChatMinimize icon component
|
|
167
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
168
|
+
*/
|
|
169
|
+
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
170
|
+
size?: number | string;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* ChatMinimize icon component
|
|
174
|
+
* @example
|
|
175
|
+
* ```tsx
|
|
176
|
+
* import { ChatMinimize } from 'magick-icons';
|
|
177
|
+
*
|
|
178
|
+
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
179
|
+
* ```
|
|
180
|
+
*/
|
|
181
|
+
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Props for the ChevronDown icon component
|
|
185
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
186
|
+
*/
|
|
187
|
+
interface ChevronDownProps extends React.SVGProps<SVGSVGElement> {
|
|
188
|
+
size?: number | string;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* ChevronDown icon component
|
|
192
|
+
* @example
|
|
193
|
+
* ```tsx
|
|
194
|
+
* import { ChevronDown } from 'magick-icons';
|
|
195
|
+
*
|
|
196
|
+
* <ChevronDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
197
|
+
* ```
|
|
198
|
+
*/
|
|
199
|
+
declare const ChevronDown: React.ForwardRefExoticComponent<Omit<ChevronDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Props for the ChevronLeft icon component
|
|
203
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
204
|
+
*/
|
|
205
|
+
interface ChevronLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
206
|
+
size?: number | string;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* ChevronLeft icon component
|
|
210
|
+
* @example
|
|
211
|
+
* ```tsx
|
|
212
|
+
* import { ChevronLeft } from 'magick-icons';
|
|
213
|
+
*
|
|
214
|
+
* <ChevronLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
215
|
+
* ```
|
|
216
|
+
*/
|
|
217
|
+
declare const ChevronLeft: React.ForwardRefExoticComponent<Omit<ChevronLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Props for the ChevronRight icon component
|
|
221
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
222
|
+
*/
|
|
223
|
+
interface ChevronRightProps extends React.SVGProps<SVGSVGElement> {
|
|
224
|
+
size?: number | string;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* ChevronRight icon component
|
|
228
|
+
* @example
|
|
229
|
+
* ```tsx
|
|
230
|
+
* import { ChevronRight } from 'magick-icons';
|
|
231
|
+
*
|
|
232
|
+
* <ChevronRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
233
|
+
* ```
|
|
234
|
+
*/
|
|
235
|
+
declare const ChevronRight: React.ForwardRefExoticComponent<Omit<ChevronRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Props for the ChevronUp icon component
|
|
239
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
240
|
+
*/
|
|
241
|
+
interface ChevronUpProps extends React.SVGProps<SVGSVGElement> {
|
|
242
|
+
size?: number | string;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* ChevronUp icon component
|
|
246
|
+
* @example
|
|
247
|
+
* ```tsx
|
|
248
|
+
* import { ChevronUp } from 'magick-icons';
|
|
249
|
+
*
|
|
250
|
+
* <ChevronUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
251
|
+
* ```
|
|
252
|
+
*/
|
|
253
|
+
declare const ChevronUp: React.ForwardRefExoticComponent<Omit<ChevronUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Props for the ChevronsUpDown icon component
|
|
257
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
258
|
+
*/
|
|
259
|
+
interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
260
|
+
size?: number | string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* ChevronsUpDown icon component
|
|
264
|
+
* @example
|
|
265
|
+
* ```tsx
|
|
266
|
+
* import { ChevronsUpDown } from 'magick-icons';
|
|
267
|
+
*
|
|
268
|
+
* <ChevronsUpDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
271
|
+
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
|
|
93
273
|
/**
|
|
94
274
|
* Props for the CircleCheckFill icon component
|
|
95
275
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -144,6 +324,24 @@ interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
144
324
|
*/
|
|
145
325
|
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
146
326
|
|
|
327
|
+
/**
|
|
328
|
+
* Props for the Doc icon component
|
|
329
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
330
|
+
*/
|
|
331
|
+
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
332
|
+
size?: number | string;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* Doc icon component
|
|
336
|
+
* @example
|
|
337
|
+
* ```tsx
|
|
338
|
+
* import { Doc } from 'magick-icons';
|
|
339
|
+
*
|
|
340
|
+
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
341
|
+
* ```
|
|
342
|
+
*/
|
|
343
|
+
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
344
|
+
|
|
147
345
|
/**
|
|
148
346
|
* Props for the DocumentTextBold icon component
|
|
149
347
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -180,6 +378,60 @@ interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
|
180
378
|
*/
|
|
181
379
|
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
182
380
|
|
|
381
|
+
/**
|
|
382
|
+
* Props for the Enter icon component
|
|
383
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
384
|
+
*/
|
|
385
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
386
|
+
size?: number | string;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* Enter icon component
|
|
390
|
+
* @example
|
|
391
|
+
* ```tsx
|
|
392
|
+
* import { Enter } from 'magick-icons';
|
|
393
|
+
*
|
|
394
|
+
* <Enter size={24} className="text-blue-500" strokeWidth={2} />
|
|
395
|
+
* ```
|
|
396
|
+
*/
|
|
397
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* Props for the Excel icon component
|
|
401
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
402
|
+
*/
|
|
403
|
+
interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
404
|
+
size?: number | string;
|
|
405
|
+
}
|
|
406
|
+
/**
|
|
407
|
+
* Excel icon component
|
|
408
|
+
* @example
|
|
409
|
+
* ```tsx
|
|
410
|
+
* import { Excel } from 'magick-icons';
|
|
411
|
+
*
|
|
412
|
+
* <Excel size={24} className="text-blue-500" strokeWidth={2} />
|
|
413
|
+
* ```
|
|
414
|
+
*/
|
|
415
|
+
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
|
+
|
|
417
|
+
/**
|
|
418
|
+
* Props for the File icon component
|
|
419
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
420
|
+
*/
|
|
421
|
+
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
422
|
+
size?: number | string;
|
|
423
|
+
}
|
|
424
|
+
/**
|
|
425
|
+
* File icon component
|
|
426
|
+
* @example
|
|
427
|
+
* ```tsx
|
|
428
|
+
* import { File } from 'magick-icons';
|
|
429
|
+
*
|
|
430
|
+
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
431
|
+
* ```
|
|
432
|
+
*/
|
|
433
|
+
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
|
+
|
|
183
435
|
/**
|
|
184
436
|
* Props for the Finance icon component
|
|
185
437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -252,6 +504,24 @@ interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
|
252
504
|
*/
|
|
253
505
|
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
254
506
|
|
|
507
|
+
/**
|
|
508
|
+
* Props for the FolderDrawerOpenAddBold icon component
|
|
509
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
510
|
+
*/
|
|
511
|
+
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
512
|
+
size?: number | string;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* FolderDrawerOpenAddBold icon component
|
|
516
|
+
* @example
|
|
517
|
+
* ```tsx
|
|
518
|
+
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
519
|
+
*
|
|
520
|
+
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
521
|
+
* ```
|
|
522
|
+
*/
|
|
523
|
+
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
524
|
+
|
|
255
525
|
/**
|
|
256
526
|
* Props for the FolderOpenBold icon component
|
|
257
527
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -270,6 +540,42 @@ interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
270
540
|
*/
|
|
271
541
|
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
272
542
|
|
|
543
|
+
/**
|
|
544
|
+
* Props for the GeneralMagicko icon component
|
|
545
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
546
|
+
*/
|
|
547
|
+
interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
548
|
+
size?: number | string;
|
|
549
|
+
}
|
|
550
|
+
/**
|
|
551
|
+
* GeneralMagicko icon component
|
|
552
|
+
* @example
|
|
553
|
+
* ```tsx
|
|
554
|
+
* import { GeneralMagicko } from 'magick-icons';
|
|
555
|
+
*
|
|
556
|
+
* <GeneralMagicko size={24} className="text-blue-500" strokeWidth={2} />
|
|
557
|
+
* ```
|
|
558
|
+
*/
|
|
559
|
+
declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* Props for the GripVertical icon component
|
|
563
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
564
|
+
*/
|
|
565
|
+
interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
566
|
+
size?: number | string;
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* GripVertical icon component
|
|
570
|
+
* @example
|
|
571
|
+
* ```tsx
|
|
572
|
+
* import { GripVertical } from 'magick-icons';
|
|
573
|
+
*
|
|
574
|
+
* <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
|
|
575
|
+
* ```
|
|
576
|
+
*/
|
|
577
|
+
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
578
|
+
|
|
273
579
|
/**
|
|
274
580
|
* Props for the HeartBold icon component
|
|
275
581
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -288,6 +594,42 @@ interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
288
594
|
*/
|
|
289
595
|
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
596
|
|
|
597
|
+
/**
|
|
598
|
+
* Props for the Hr icon component
|
|
599
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
600
|
+
*/
|
|
601
|
+
interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
602
|
+
size?: number | string;
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* Hr icon component
|
|
606
|
+
* @example
|
|
607
|
+
* ```tsx
|
|
608
|
+
* import { Hr } from 'magick-icons';
|
|
609
|
+
*
|
|
610
|
+
* <Hr size={24} className="text-blue-500" strokeWidth={2} />
|
|
611
|
+
* ```
|
|
612
|
+
*/
|
|
613
|
+
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* Props for the HrSystem icon component
|
|
617
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
618
|
+
*/
|
|
619
|
+
interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
620
|
+
size?: number | string;
|
|
621
|
+
}
|
|
622
|
+
/**
|
|
623
|
+
* HrSystem icon component
|
|
624
|
+
* @example
|
|
625
|
+
* ```tsx
|
|
626
|
+
* import { HrSystem } from 'magick-icons';
|
|
627
|
+
*
|
|
628
|
+
* <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
|
|
629
|
+
* ```
|
|
630
|
+
*/
|
|
631
|
+
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
|
+
|
|
291
633
|
/**
|
|
292
634
|
* Props for the IconsaxAiScienceBold icon component
|
|
293
635
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -432,6 +774,42 @@ interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
432
774
|
*/
|
|
433
775
|
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
434
776
|
|
|
777
|
+
/**
|
|
778
|
+
* Props for the IconsaxWord icon component
|
|
779
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
780
|
+
*/
|
|
781
|
+
interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
782
|
+
size?: number | string;
|
|
783
|
+
}
|
|
784
|
+
/**
|
|
785
|
+
* IconsaxWord icon component
|
|
786
|
+
* @example
|
|
787
|
+
* ```tsx
|
|
788
|
+
* import { IconsaxWord } from 'magick-icons';
|
|
789
|
+
*
|
|
790
|
+
* <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
|
|
791
|
+
* ```
|
|
792
|
+
*/
|
|
793
|
+
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* Props for the InProgress icon component
|
|
797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
+
*/
|
|
799
|
+
interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
800
|
+
size?: number | string;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* InProgress icon component
|
|
804
|
+
* @example
|
|
805
|
+
* ```tsx
|
|
806
|
+
* import { InProgress } from 'magick-icons';
|
|
807
|
+
*
|
|
808
|
+
* <InProgress size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
+
* ```
|
|
810
|
+
*/
|
|
811
|
+
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
+
|
|
435
813
|
/**
|
|
436
814
|
* Props for the InfoCircleBold icon component
|
|
437
815
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -486,6 +864,24 @@ interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
486
864
|
*/
|
|
487
865
|
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
488
866
|
|
|
867
|
+
/**
|
|
868
|
+
* Props for the Line icon component
|
|
869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
|
+
*/
|
|
871
|
+
interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
872
|
+
size?: number | string;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* Line icon component
|
|
876
|
+
* @example
|
|
877
|
+
* ```tsx
|
|
878
|
+
* import { Line } from 'magick-icons';
|
|
879
|
+
*
|
|
880
|
+
* <Line size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
489
885
|
/**
|
|
490
886
|
* Props for the LinkSquare icon component
|
|
491
887
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -504,6 +900,78 @@ interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
|
504
900
|
*/
|
|
505
901
|
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
506
902
|
|
|
903
|
+
/**
|
|
904
|
+
* Props for the List icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface ListProps extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* List icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { List } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <List size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const List: React.ForwardRefExoticComponent<Omit<ListProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* Props for the ListEnd icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface ListEndProps extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* ListEnd icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { ListEnd } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <ListEnd size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const ListEnd: React.ForwardRefExoticComponent<Omit<ListEndProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* Props for the ListOrdered icon component
|
|
941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
|
+
*/
|
|
943
|
+
interface ListOrderedProps extends React.SVGProps<SVGSVGElement> {
|
|
944
|
+
size?: number | string;
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* ListOrdered icon component
|
|
948
|
+
* @example
|
|
949
|
+
* ```tsx
|
|
950
|
+
* import { ListOrdered } from 'magick-icons';
|
|
951
|
+
*
|
|
952
|
+
* <ListOrdered size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
|
+
* ```
|
|
954
|
+
*/
|
|
955
|
+
declare const ListOrdered: React.ForwardRefExoticComponent<Omit<ListOrderedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
|
+
|
|
957
|
+
/**
|
|
958
|
+
* Props for the ListTodo icon component
|
|
959
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
960
|
+
*/
|
|
961
|
+
interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
962
|
+
size?: number | string;
|
|
963
|
+
}
|
|
964
|
+
/**
|
|
965
|
+
* ListTodo icon component
|
|
966
|
+
* @example
|
|
967
|
+
* ```tsx
|
|
968
|
+
* import { ListTodo } from 'magick-icons';
|
|
969
|
+
*
|
|
970
|
+
* <ListTodo size={24} className="text-blue-500" strokeWidth={2} />
|
|
971
|
+
* ```
|
|
972
|
+
*/
|
|
973
|
+
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
974
|
+
|
|
507
975
|
/**
|
|
508
976
|
* Props for the Lock icon component
|
|
509
977
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -540,6 +1008,24 @@ interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
|
540
1008
|
*/
|
|
541
1009
|
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
542
1010
|
|
|
1011
|
+
/**
|
|
1012
|
+
* Props for the MagickoCheck icon component
|
|
1013
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1014
|
+
*/
|
|
1015
|
+
interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
1016
|
+
size?: number | string;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* MagickoCheck icon component
|
|
1020
|
+
* @example
|
|
1021
|
+
* ```tsx
|
|
1022
|
+
* import { MagickoCheck } from 'magick-icons';
|
|
1023
|
+
*
|
|
1024
|
+
* <MagickoCheck size={24} className="text-blue-500" strokeWidth={2} />
|
|
1025
|
+
* ```
|
|
1026
|
+
*/
|
|
1027
|
+
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
|
+
|
|
543
1029
|
/**
|
|
544
1030
|
* Props for the Marketing icon component
|
|
545
1031
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -594,6 +1080,24 @@ interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
|
594
1080
|
*/
|
|
595
1081
|
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
596
1082
|
|
|
1083
|
+
/**
|
|
1084
|
+
* Props for the NotiDot icon component
|
|
1085
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1086
|
+
*/
|
|
1087
|
+
interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
1088
|
+
size?: number | string;
|
|
1089
|
+
}
|
|
1090
|
+
/**
|
|
1091
|
+
* NotiDot icon component
|
|
1092
|
+
* @example
|
|
1093
|
+
* ```tsx
|
|
1094
|
+
* import { NotiDot } from 'magick-icons';
|
|
1095
|
+
*
|
|
1096
|
+
* <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
1097
|
+
* ```
|
|
1098
|
+
*/
|
|
1099
|
+
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1100
|
+
|
|
597
1101
|
/**
|
|
598
1102
|
* Props for the PA icon component
|
|
599
1103
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -612,6 +1116,96 @@ interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
|
612
1116
|
*/
|
|
613
1117
|
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
614
1118
|
|
|
1119
|
+
/**
|
|
1120
|
+
* Props for the PauseSquare icon component
|
|
1121
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1122
|
+
*/
|
|
1123
|
+
interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
1124
|
+
size?: number | string;
|
|
1125
|
+
}
|
|
1126
|
+
/**
|
|
1127
|
+
* PauseSquare icon component
|
|
1128
|
+
* @example
|
|
1129
|
+
* ```tsx
|
|
1130
|
+
* import { PauseSquare } from 'magick-icons';
|
|
1131
|
+
*
|
|
1132
|
+
* <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
1133
|
+
* ```
|
|
1134
|
+
*/
|
|
1135
|
+
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* Props for the Pdf icon component
|
|
1139
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1140
|
+
*/
|
|
1141
|
+
interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
1142
|
+
size?: number | string;
|
|
1143
|
+
}
|
|
1144
|
+
/**
|
|
1145
|
+
* Pdf icon component
|
|
1146
|
+
* @example
|
|
1147
|
+
* ```tsx
|
|
1148
|
+
* import { Pdf } from 'magick-icons';
|
|
1149
|
+
*
|
|
1150
|
+
* <Pdf size={24} className="text-blue-500" strokeWidth={2} />
|
|
1151
|
+
* ```
|
|
1152
|
+
*/
|
|
1153
|
+
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1154
|
+
|
|
1155
|
+
/**
|
|
1156
|
+
* Props for the PlayFilled icon component
|
|
1157
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1158
|
+
*/
|
|
1159
|
+
interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
1160
|
+
size?: number | string;
|
|
1161
|
+
}
|
|
1162
|
+
/**
|
|
1163
|
+
* PlayFilled icon component
|
|
1164
|
+
* @example
|
|
1165
|
+
* ```tsx
|
|
1166
|
+
* import { PlayFilled } from 'magick-icons';
|
|
1167
|
+
*
|
|
1168
|
+
* <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
1169
|
+
* ```
|
|
1170
|
+
*/
|
|
1171
|
+
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1172
|
+
|
|
1173
|
+
/**
|
|
1174
|
+
* Props for the Signature icon component
|
|
1175
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1176
|
+
*/
|
|
1177
|
+
interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
1178
|
+
size?: number | string;
|
|
1179
|
+
}
|
|
1180
|
+
/**
|
|
1181
|
+
* Signature icon component
|
|
1182
|
+
* @example
|
|
1183
|
+
* ```tsx
|
|
1184
|
+
* import { Signature } from 'magick-icons';
|
|
1185
|
+
*
|
|
1186
|
+
* <Signature size={24} className="text-blue-500" strokeWidth={2} />
|
|
1187
|
+
* ```
|
|
1188
|
+
*/
|
|
1189
|
+
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1190
|
+
|
|
1191
|
+
/**
|
|
1192
|
+
* Props for the SperateDot icon component
|
|
1193
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1194
|
+
*/
|
|
1195
|
+
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
1196
|
+
size?: number | string;
|
|
1197
|
+
}
|
|
1198
|
+
/**
|
|
1199
|
+
* SperateDot icon component
|
|
1200
|
+
* @example
|
|
1201
|
+
* ```tsx
|
|
1202
|
+
* import { SperateDot } from 'magick-icons';
|
|
1203
|
+
*
|
|
1204
|
+
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
1205
|
+
* ```
|
|
1206
|
+
*/
|
|
1207
|
+
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1208
|
+
|
|
615
1209
|
/**
|
|
616
1210
|
* Props for the SquarePen1 icon component
|
|
617
1211
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -630,6 +1224,24 @@ interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
630
1224
|
*/
|
|
631
1225
|
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
1226
|
|
|
1227
|
+
/**
|
|
1228
|
+
* Props for the Strikethrough icon component
|
|
1229
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1230
|
+
*/
|
|
1231
|
+
interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
1232
|
+
size?: number | string;
|
|
1233
|
+
}
|
|
1234
|
+
/**
|
|
1235
|
+
* Strikethrough icon component
|
|
1236
|
+
* @example
|
|
1237
|
+
* ```tsx
|
|
1238
|
+
* import { Strikethrough } from 'magick-icons';
|
|
1239
|
+
*
|
|
1240
|
+
* <Strikethrough size={24} className="text-blue-500" strokeWidth={2} />
|
|
1241
|
+
* ```
|
|
1242
|
+
*/
|
|
1243
|
+
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1244
|
+
|
|
633
1245
|
/**
|
|
634
1246
|
* Props for the Tasks icon component
|
|
635
1247
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -684,4 +1296,22 @@ interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
684
1296
|
*/
|
|
685
1297
|
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
1298
|
|
|
687
|
-
|
|
1299
|
+
/**
|
|
1300
|
+
* Props for the X icon component
|
|
1301
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1302
|
+
*/
|
|
1303
|
+
interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
1304
|
+
size?: number | string;
|
|
1305
|
+
}
|
|
1306
|
+
/**
|
|
1307
|
+
* X icon component
|
|
1308
|
+
* @example
|
|
1309
|
+
* ```tsx
|
|
1310
|
+
* import { X } from 'magick-icons';
|
|
1311
|
+
*
|
|
1312
|
+
* <X size={24} className="text-blue-500" strokeWidth={2} />
|
|
1313
|
+
* ```
|
|
1314
|
+
*/
|
|
1315
|
+
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
|
+
|
|
1317
|
+
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, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|