magick-icons 0.1.235 → 0.1.237
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 +1081 -1
- package/index.d.ts +1081 -1
- package/index.js +974 -81
- package/index.js.map +1 -1
- package/index.mjs +914 -81
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -11214,6 +11214,24 @@ interface MagickoLampSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
|
11214
11214
|
*/
|
|
11215
11215
|
declare const MagickoLampSlash: React.ForwardRefExoticComponent<Omit<MagickoLampSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11216
11216
|
|
|
11217
|
+
/**
|
|
11218
|
+
* Props for the MagickoLanguage icon component
|
|
11219
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11220
|
+
*/
|
|
11221
|
+
interface MagickoLanguageProps extends React.SVGProps<SVGSVGElement> {
|
|
11222
|
+
size?: number | string;
|
|
11223
|
+
}
|
|
11224
|
+
/**
|
|
11225
|
+
* MagickoLanguage icon component
|
|
11226
|
+
* @example
|
|
11227
|
+
* ```tsx
|
|
11228
|
+
* import { MagickoLanguage } from 'magick-icons';
|
|
11229
|
+
*
|
|
11230
|
+
* <MagickoLanguage size={24} className="text-blue-500" strokeWidth={2} />
|
|
11231
|
+
* ```
|
|
11232
|
+
*/
|
|
11233
|
+
declare const MagickoLanguage: React.ForwardRefExoticComponent<Omit<MagickoLanguageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11234
|
+
|
|
11217
11235
|
/**
|
|
11218
11236
|
* Props for the MagickoLanguageCircle icon component
|
|
11219
11237
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -11250,6 +11268,1068 @@ interface MagickoLanguageSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
|
11250
11268
|
*/
|
|
11251
11269
|
declare const MagickoLanguageSquare: React.ForwardRefExoticComponent<Omit<MagickoLanguageSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11252
11270
|
|
|
11271
|
+
/**
|
|
11272
|
+
* Props for the MagickoLayer icon component
|
|
11273
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11274
|
+
*/
|
|
11275
|
+
interface MagickoLayerProps extends React.SVGProps<SVGSVGElement> {
|
|
11276
|
+
size?: number | string;
|
|
11277
|
+
}
|
|
11278
|
+
/**
|
|
11279
|
+
* MagickoLayer icon component
|
|
11280
|
+
* @example
|
|
11281
|
+
* ```tsx
|
|
11282
|
+
* import { MagickoLayer } from 'magick-icons';
|
|
11283
|
+
*
|
|
11284
|
+
* <MagickoLayer size={24} className="text-blue-500" strokeWidth={2} />
|
|
11285
|
+
* ```
|
|
11286
|
+
*/
|
|
11287
|
+
declare const MagickoLayer: React.ForwardRefExoticComponent<Omit<MagickoLayerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11288
|
+
|
|
11289
|
+
/**
|
|
11290
|
+
* Props for the MagickoLayout icon component
|
|
11291
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11292
|
+
*/
|
|
11293
|
+
interface MagickoLayoutProps extends React.SVGProps<SVGSVGElement> {
|
|
11294
|
+
size?: number | string;
|
|
11295
|
+
}
|
|
11296
|
+
/**
|
|
11297
|
+
* MagickoLayout icon component
|
|
11298
|
+
* @example
|
|
11299
|
+
* ```tsx
|
|
11300
|
+
* import { MagickoLayout } from 'magick-icons';
|
|
11301
|
+
*
|
|
11302
|
+
* <MagickoLayout size={24} className="text-blue-500" strokeWidth={2} />
|
|
11303
|
+
* ```
|
|
11304
|
+
*/
|
|
11305
|
+
declare const MagickoLayout: React.ForwardRefExoticComponent<Omit<MagickoLayoutProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11306
|
+
|
|
11307
|
+
/**
|
|
11308
|
+
* Props for the MagickoLeaf2 icon component
|
|
11309
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11310
|
+
*/
|
|
11311
|
+
interface MagickoLeaf2Props extends React.SVGProps<SVGSVGElement> {
|
|
11312
|
+
size?: number | string;
|
|
11313
|
+
}
|
|
11314
|
+
/**
|
|
11315
|
+
* MagickoLeaf2 icon component
|
|
11316
|
+
* @example
|
|
11317
|
+
* ```tsx
|
|
11318
|
+
* import { MagickoLeaf2 } from 'magick-icons';
|
|
11319
|
+
*
|
|
11320
|
+
* <MagickoLeaf2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11321
|
+
* ```
|
|
11322
|
+
*/
|
|
11323
|
+
declare const MagickoLeaf2: React.ForwardRefExoticComponent<Omit<MagickoLeaf2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11324
|
+
|
|
11325
|
+
/**
|
|
11326
|
+
* Props for the MagickoLeaf3 icon component
|
|
11327
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11328
|
+
*/
|
|
11329
|
+
interface MagickoLeaf3Props extends React.SVGProps<SVGSVGElement> {
|
|
11330
|
+
size?: number | string;
|
|
11331
|
+
}
|
|
11332
|
+
/**
|
|
11333
|
+
* MagickoLeaf3 icon component
|
|
11334
|
+
* @example
|
|
11335
|
+
* ```tsx
|
|
11336
|
+
* import { MagickoLeaf3 } from 'magick-icons';
|
|
11337
|
+
*
|
|
11338
|
+
* <MagickoLeaf3 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11339
|
+
* ```
|
|
11340
|
+
*/
|
|
11341
|
+
declare const MagickoLeaf3: React.ForwardRefExoticComponent<Omit<MagickoLeaf3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11342
|
+
|
|
11343
|
+
/**
|
|
11344
|
+
* Props for the MagickoLeafs icon component
|
|
11345
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11346
|
+
*/
|
|
11347
|
+
interface MagickoLeafsProps extends React.SVGProps<SVGSVGElement> {
|
|
11348
|
+
size?: number | string;
|
|
11349
|
+
}
|
|
11350
|
+
/**
|
|
11351
|
+
* MagickoLeafs icon component
|
|
11352
|
+
* @example
|
|
11353
|
+
* ```tsx
|
|
11354
|
+
* import { MagickoLeafs } from 'magick-icons';
|
|
11355
|
+
*
|
|
11356
|
+
* <MagickoLeafs size={24} className="text-blue-500" strokeWidth={2} />
|
|
11357
|
+
* ```
|
|
11358
|
+
*/
|
|
11359
|
+
declare const MagickoLeafs: React.ForwardRefExoticComponent<Omit<MagickoLeafsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11360
|
+
|
|
11361
|
+
/**
|
|
11362
|
+
* Props for the MagickoLeftBarGrid icon component
|
|
11363
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11364
|
+
*/
|
|
11365
|
+
interface MagickoLeftBarGridProps extends React.SVGProps<SVGSVGElement> {
|
|
11366
|
+
size?: number | string;
|
|
11367
|
+
}
|
|
11368
|
+
/**
|
|
11369
|
+
* MagickoLeftBarGrid icon component
|
|
11370
|
+
* @example
|
|
11371
|
+
* ```tsx
|
|
11372
|
+
* import { MagickoLeftBarGrid } from 'magick-icons';
|
|
11373
|
+
*
|
|
11374
|
+
* <MagickoLeftBarGrid size={24} className="text-blue-500" strokeWidth={2} />
|
|
11375
|
+
* ```
|
|
11376
|
+
*/
|
|
11377
|
+
declare const MagickoLeftBarGrid: React.ForwardRefExoticComponent<Omit<MagickoLeftBarGridProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11378
|
+
|
|
11379
|
+
/**
|
|
11380
|
+
* Props for the MagickoLeftCloud icon component
|
|
11381
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11382
|
+
*/
|
|
11383
|
+
interface MagickoLeftCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
11384
|
+
size?: number | string;
|
|
11385
|
+
}
|
|
11386
|
+
/**
|
|
11387
|
+
* MagickoLeftCloud icon component
|
|
11388
|
+
* @example
|
|
11389
|
+
* ```tsx
|
|
11390
|
+
* import { MagickoLeftCloud } from 'magick-icons';
|
|
11391
|
+
*
|
|
11392
|
+
* <MagickoLeftCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
11393
|
+
* ```
|
|
11394
|
+
*/
|
|
11395
|
+
declare const MagickoLeftCloud: React.ForwardRefExoticComponent<Omit<MagickoLeftCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11396
|
+
|
|
11397
|
+
/**
|
|
11398
|
+
* Props for the MagickoLeftRightCloud icon component
|
|
11399
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11400
|
+
*/
|
|
11401
|
+
interface MagickoLeftRightCloudProps extends React.SVGProps<SVGSVGElement> {
|
|
11402
|
+
size?: number | string;
|
|
11403
|
+
}
|
|
11404
|
+
/**
|
|
11405
|
+
* MagickoLeftRightCloud icon component
|
|
11406
|
+
* @example
|
|
11407
|
+
* ```tsx
|
|
11408
|
+
* import { MagickoLeftRightCloud } from 'magick-icons';
|
|
11409
|
+
*
|
|
11410
|
+
* <MagickoLeftRightCloud size={24} className="text-blue-500" strokeWidth={2} />
|
|
11411
|
+
* ```
|
|
11412
|
+
*/
|
|
11413
|
+
declare const MagickoLeftRightCloud: React.ForwardRefExoticComponent<Omit<MagickoLeftRightCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11414
|
+
|
|
11415
|
+
/**
|
|
11416
|
+
* Props for the MagickoLeftSidebarGrid icon component
|
|
11417
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11418
|
+
*/
|
|
11419
|
+
interface MagickoLeftSidebarGridProps extends React.SVGProps<SVGSVGElement> {
|
|
11420
|
+
size?: number | string;
|
|
11421
|
+
}
|
|
11422
|
+
/**
|
|
11423
|
+
* MagickoLeftSidebarGrid icon component
|
|
11424
|
+
* @example
|
|
11425
|
+
* ```tsx
|
|
11426
|
+
* import { MagickoLeftSidebarGrid } from 'magick-icons';
|
|
11427
|
+
*
|
|
11428
|
+
* <MagickoLeftSidebarGrid size={24} className="text-blue-500" strokeWidth={2} />
|
|
11429
|
+
* ```
|
|
11430
|
+
*/
|
|
11431
|
+
declare const MagickoLeftSidebarGrid: React.ForwardRefExoticComponent<Omit<MagickoLeftSidebarGridProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11432
|
+
|
|
11433
|
+
/**
|
|
11434
|
+
* Props for the MagickoLightning icon component
|
|
11435
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11436
|
+
*/
|
|
11437
|
+
interface MagickoLightningProps extends React.SVGProps<SVGSVGElement> {
|
|
11438
|
+
size?: number | string;
|
|
11439
|
+
}
|
|
11440
|
+
/**
|
|
11441
|
+
* MagickoLightning icon component
|
|
11442
|
+
* @example
|
|
11443
|
+
* ```tsx
|
|
11444
|
+
* import { MagickoLightning } from 'magick-icons';
|
|
11445
|
+
*
|
|
11446
|
+
* <MagickoLightning size={24} className="text-blue-500" strokeWidth={2} />
|
|
11447
|
+
* ```
|
|
11448
|
+
*/
|
|
11449
|
+
declare const MagickoLightning: React.ForwardRefExoticComponent<Omit<MagickoLightningProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11450
|
+
|
|
11451
|
+
/**
|
|
11452
|
+
* Props for the MagickoLike1 icon component
|
|
11453
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11454
|
+
*/
|
|
11455
|
+
interface MagickoLike1Props extends React.SVGProps<SVGSVGElement> {
|
|
11456
|
+
size?: number | string;
|
|
11457
|
+
}
|
|
11458
|
+
/**
|
|
11459
|
+
* MagickoLike1 icon component
|
|
11460
|
+
* @example
|
|
11461
|
+
* ```tsx
|
|
11462
|
+
* import { MagickoLike1 } from 'magick-icons';
|
|
11463
|
+
*
|
|
11464
|
+
* <MagickoLike1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11465
|
+
* ```
|
|
11466
|
+
*/
|
|
11467
|
+
declare const MagickoLike1: React.ForwardRefExoticComponent<Omit<MagickoLike1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11468
|
+
|
|
11469
|
+
/**
|
|
11470
|
+
* Props for the MagickoLikeDislike icon component
|
|
11471
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11472
|
+
*/
|
|
11473
|
+
interface MagickoLikeDislikeProps extends React.SVGProps<SVGSVGElement> {
|
|
11474
|
+
size?: number | string;
|
|
11475
|
+
}
|
|
11476
|
+
/**
|
|
11477
|
+
* MagickoLikeDislike icon component
|
|
11478
|
+
* @example
|
|
11479
|
+
* ```tsx
|
|
11480
|
+
* import { MagickoLikeDislike } from 'magick-icons';
|
|
11481
|
+
*
|
|
11482
|
+
* <MagickoLikeDislike size={24} className="text-blue-500" strokeWidth={2} />
|
|
11483
|
+
* ```
|
|
11484
|
+
*/
|
|
11485
|
+
declare const MagickoLikeDislike: React.ForwardRefExoticComponent<Omit<MagickoLikeDislikeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11486
|
+
|
|
11487
|
+
/**
|
|
11488
|
+
* Props for the MagickoLineSpace icon component
|
|
11489
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11490
|
+
*/
|
|
11491
|
+
interface MagickoLineSpaceProps extends React.SVGProps<SVGSVGElement> {
|
|
11492
|
+
size?: number | string;
|
|
11493
|
+
}
|
|
11494
|
+
/**
|
|
11495
|
+
* MagickoLineSpace icon component
|
|
11496
|
+
* @example
|
|
11497
|
+
* ```tsx
|
|
11498
|
+
* import { MagickoLineSpace } from 'magick-icons';
|
|
11499
|
+
*
|
|
11500
|
+
* <MagickoLineSpace size={24} className="text-blue-500" strokeWidth={2} />
|
|
11501
|
+
* ```
|
|
11502
|
+
*/
|
|
11503
|
+
declare const MagickoLineSpace: React.ForwardRefExoticComponent<Omit<MagickoLineSpaceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11504
|
+
|
|
11505
|
+
/**
|
|
11506
|
+
* Props for the MagickoLink icon component
|
|
11507
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11508
|
+
*/
|
|
11509
|
+
interface MagickoLinkProps extends React.SVGProps<SVGSVGElement> {
|
|
11510
|
+
size?: number | string;
|
|
11511
|
+
}
|
|
11512
|
+
/**
|
|
11513
|
+
* MagickoLink icon component
|
|
11514
|
+
* @example
|
|
11515
|
+
* ```tsx
|
|
11516
|
+
* import { MagickoLink } from 'magick-icons';
|
|
11517
|
+
*
|
|
11518
|
+
* <MagickoLink size={24} className="text-blue-500" strokeWidth={2} />
|
|
11519
|
+
* ```
|
|
11520
|
+
*/
|
|
11521
|
+
declare const MagickoLink: React.ForwardRefExoticComponent<Omit<MagickoLinkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11522
|
+
|
|
11523
|
+
/**
|
|
11524
|
+
* Props for the MagickoLink4 icon component
|
|
11525
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11526
|
+
*/
|
|
11527
|
+
interface MagickoLink4Props extends React.SVGProps<SVGSVGElement> {
|
|
11528
|
+
size?: number | string;
|
|
11529
|
+
}
|
|
11530
|
+
/**
|
|
11531
|
+
* MagickoLink4 icon component
|
|
11532
|
+
* @example
|
|
11533
|
+
* ```tsx
|
|
11534
|
+
* import { MagickoLink4 } from 'magick-icons';
|
|
11535
|
+
*
|
|
11536
|
+
* <MagickoLink4 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11537
|
+
* ```
|
|
11538
|
+
*/
|
|
11539
|
+
declare const MagickoLink4: React.ForwardRefExoticComponent<Omit<MagickoLink4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11540
|
+
|
|
11541
|
+
/**
|
|
11542
|
+
* Props for the MagickoLocation icon component
|
|
11543
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11544
|
+
*/
|
|
11545
|
+
interface MagickoLocationProps extends React.SVGProps<SVGSVGElement> {
|
|
11546
|
+
size?: number | string;
|
|
11547
|
+
}
|
|
11548
|
+
/**
|
|
11549
|
+
* MagickoLocation icon component
|
|
11550
|
+
* @example
|
|
11551
|
+
* ```tsx
|
|
11552
|
+
* import { MagickoLocation } from 'magick-icons';
|
|
11553
|
+
*
|
|
11554
|
+
* <MagickoLocation size={24} className="text-blue-500" strokeWidth={2} />
|
|
11555
|
+
* ```
|
|
11556
|
+
*/
|
|
11557
|
+
declare const MagickoLocation: React.ForwardRefExoticComponent<Omit<MagickoLocationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11558
|
+
|
|
11559
|
+
/**
|
|
11560
|
+
* Props for the MagickoLocationSlash icon component
|
|
11561
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11562
|
+
*/
|
|
11563
|
+
interface MagickoLocationSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
11564
|
+
size?: number | string;
|
|
11565
|
+
}
|
|
11566
|
+
/**
|
|
11567
|
+
* MagickoLocationSlash icon component
|
|
11568
|
+
* @example
|
|
11569
|
+
* ```tsx
|
|
11570
|
+
* import { MagickoLocationSlash } from 'magick-icons';
|
|
11571
|
+
*
|
|
11572
|
+
* <MagickoLocationSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
11573
|
+
* ```
|
|
11574
|
+
*/
|
|
11575
|
+
declare const MagickoLocationSlash: React.ForwardRefExoticComponent<Omit<MagickoLocationSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11576
|
+
|
|
11577
|
+
/**
|
|
11578
|
+
* Props for the MagickoLog icon component
|
|
11579
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11580
|
+
*/
|
|
11581
|
+
interface MagickoLogProps extends React.SVGProps<SVGSVGElement> {
|
|
11582
|
+
size?: number | string;
|
|
11583
|
+
}
|
|
11584
|
+
/**
|
|
11585
|
+
* MagickoLog icon component
|
|
11586
|
+
* @example
|
|
11587
|
+
* ```tsx
|
|
11588
|
+
* import { MagickoLog } from 'magick-icons';
|
|
11589
|
+
*
|
|
11590
|
+
* <MagickoLog size={24} className="text-blue-500" strokeWidth={2} />
|
|
11591
|
+
* ```
|
|
11592
|
+
*/
|
|
11593
|
+
declare const MagickoLog: React.ForwardRefExoticComponent<Omit<MagickoLogProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11594
|
+
|
|
11595
|
+
/**
|
|
11596
|
+
* Props for the MagickoLogin01 icon component
|
|
11597
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11598
|
+
*/
|
|
11599
|
+
interface MagickoLogin01Props extends React.SVGProps<SVGSVGElement> {
|
|
11600
|
+
size?: number | string;
|
|
11601
|
+
}
|
|
11602
|
+
/**
|
|
11603
|
+
* MagickoLogin01 icon component
|
|
11604
|
+
* @example
|
|
11605
|
+
* ```tsx
|
|
11606
|
+
* import { MagickoLogin01 } from 'magick-icons';
|
|
11607
|
+
*
|
|
11608
|
+
* <MagickoLogin01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11609
|
+
* ```
|
|
11610
|
+
*/
|
|
11611
|
+
declare const MagickoLogin01: React.ForwardRefExoticComponent<Omit<MagickoLogin01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11612
|
+
|
|
11613
|
+
/**
|
|
11614
|
+
* Props for the MagickoLogin02 icon component
|
|
11615
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11616
|
+
*/
|
|
11617
|
+
interface MagickoLogin02Props extends React.SVGProps<SVGSVGElement> {
|
|
11618
|
+
size?: number | string;
|
|
11619
|
+
}
|
|
11620
|
+
/**
|
|
11621
|
+
* MagickoLogin02 icon component
|
|
11622
|
+
* @example
|
|
11623
|
+
* ```tsx
|
|
11624
|
+
* import { MagickoLogin02 } from 'magick-icons';
|
|
11625
|
+
*
|
|
11626
|
+
* <MagickoLogin02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11627
|
+
* ```
|
|
11628
|
+
*/
|
|
11629
|
+
declare const MagickoLogin02: React.ForwardRefExoticComponent<Omit<MagickoLogin02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11630
|
+
|
|
11631
|
+
/**
|
|
11632
|
+
* Props for the MagickoLogout01 icon component
|
|
11633
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11634
|
+
*/
|
|
11635
|
+
interface MagickoLogout01Props extends React.SVGProps<SVGSVGElement> {
|
|
11636
|
+
size?: number | string;
|
|
11637
|
+
}
|
|
11638
|
+
/**
|
|
11639
|
+
* MagickoLogout01 icon component
|
|
11640
|
+
* @example
|
|
11641
|
+
* ```tsx
|
|
11642
|
+
* import { MagickoLogout01 } from 'magick-icons';
|
|
11643
|
+
*
|
|
11644
|
+
* <MagickoLogout01 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11645
|
+
* ```
|
|
11646
|
+
*/
|
|
11647
|
+
declare const MagickoLogout01: React.ForwardRefExoticComponent<Omit<MagickoLogout01Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11648
|
+
|
|
11649
|
+
/**
|
|
11650
|
+
* Props for the MagickoLogout02 icon component
|
|
11651
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11652
|
+
*/
|
|
11653
|
+
interface MagickoLogout02Props extends React.SVGProps<SVGSVGElement> {
|
|
11654
|
+
size?: number | string;
|
|
11655
|
+
}
|
|
11656
|
+
/**
|
|
11657
|
+
* MagickoLogout02 icon component
|
|
11658
|
+
* @example
|
|
11659
|
+
* ```tsx
|
|
11660
|
+
* import { MagickoLogout02 } from 'magick-icons';
|
|
11661
|
+
*
|
|
11662
|
+
* <MagickoLogout02 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11663
|
+
* ```
|
|
11664
|
+
*/
|
|
11665
|
+
declare const MagickoLogout02: React.ForwardRefExoticComponent<Omit<MagickoLogout02Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11666
|
+
|
|
11667
|
+
/**
|
|
11668
|
+
* Props for the MagickoLoveShine icon component
|
|
11669
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11670
|
+
*/
|
|
11671
|
+
interface MagickoLoveShineProps extends React.SVGProps<SVGSVGElement> {
|
|
11672
|
+
size?: number | string;
|
|
11673
|
+
}
|
|
11674
|
+
/**
|
|
11675
|
+
* MagickoLoveShine icon component
|
|
11676
|
+
* @example
|
|
11677
|
+
* ```tsx
|
|
11678
|
+
* import { MagickoLoveShine } from 'magick-icons';
|
|
11679
|
+
*
|
|
11680
|
+
* <MagickoLoveShine size={24} className="text-blue-500" strokeWidth={2} />
|
|
11681
|
+
* ```
|
|
11682
|
+
*/
|
|
11683
|
+
declare const MagickoLoveShine: React.ForwardRefExoticComponent<Omit<MagickoLoveShineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11684
|
+
|
|
11685
|
+
/**
|
|
11686
|
+
* Props for the MagickoMagicStar icon component
|
|
11687
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11688
|
+
*/
|
|
11689
|
+
interface MagickoMagicStarProps extends React.SVGProps<SVGSVGElement> {
|
|
11690
|
+
size?: number | string;
|
|
11691
|
+
}
|
|
11692
|
+
/**
|
|
11693
|
+
* MagickoMagicStar icon component
|
|
11694
|
+
* @example
|
|
11695
|
+
* ```tsx
|
|
11696
|
+
* import { MagickoMagicStar } from 'magick-icons';
|
|
11697
|
+
*
|
|
11698
|
+
* <MagickoMagicStar size={24} className="text-blue-500" strokeWidth={2} />
|
|
11699
|
+
* ```
|
|
11700
|
+
*/
|
|
11701
|
+
declare const MagickoMagicStar: React.ForwardRefExoticComponent<Omit<MagickoMagicStarProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11702
|
+
|
|
11703
|
+
/**
|
|
11704
|
+
* Props for the MagickoMagicpen icon component
|
|
11705
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11706
|
+
*/
|
|
11707
|
+
interface MagickoMagicpenProps extends React.SVGProps<SVGSVGElement> {
|
|
11708
|
+
size?: number | string;
|
|
11709
|
+
}
|
|
11710
|
+
/**
|
|
11711
|
+
* MagickoMagicpen icon component
|
|
11712
|
+
* @example
|
|
11713
|
+
* ```tsx
|
|
11714
|
+
* import { MagickoMagicpen } from 'magick-icons';
|
|
11715
|
+
*
|
|
11716
|
+
* <MagickoMagicpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
11717
|
+
* ```
|
|
11718
|
+
*/
|
|
11719
|
+
declare const MagickoMagicpen: React.ForwardRefExoticComponent<Omit<MagickoMagicpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11720
|
+
|
|
11721
|
+
/**
|
|
11722
|
+
* Props for the MagickoMan icon component
|
|
11723
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11724
|
+
*/
|
|
11725
|
+
interface MagickoManProps extends React.SVGProps<SVGSVGElement> {
|
|
11726
|
+
size?: number | string;
|
|
11727
|
+
}
|
|
11728
|
+
/**
|
|
11729
|
+
* MagickoMan icon component
|
|
11730
|
+
* @example
|
|
11731
|
+
* ```tsx
|
|
11732
|
+
* import { MagickoMan } from 'magick-icons';
|
|
11733
|
+
*
|
|
11734
|
+
* <MagickoMan size={24} className="text-blue-500" strokeWidth={2} />
|
|
11735
|
+
* ```
|
|
11736
|
+
*/
|
|
11737
|
+
declare const MagickoMan: React.ForwardRefExoticComponent<Omit<MagickoManProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11738
|
+
|
|
11739
|
+
/**
|
|
11740
|
+
* Props for the MagickoMap icon component
|
|
11741
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11742
|
+
*/
|
|
11743
|
+
interface MagickoMapProps extends React.SVGProps<SVGSVGElement> {
|
|
11744
|
+
size?: number | string;
|
|
11745
|
+
}
|
|
11746
|
+
/**
|
|
11747
|
+
* MagickoMap icon component
|
|
11748
|
+
* @example
|
|
11749
|
+
* ```tsx
|
|
11750
|
+
* import { MagickoMap } from 'magick-icons';
|
|
11751
|
+
*
|
|
11752
|
+
* <MagickoMap size={24} className="text-blue-500" strokeWidth={2} />
|
|
11753
|
+
* ```
|
|
11754
|
+
*/
|
|
11755
|
+
declare const MagickoMap: React.ForwardRefExoticComponent<Omit<MagickoMapProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11756
|
+
|
|
11757
|
+
/**
|
|
11758
|
+
* Props for the MagickoMap1 icon component
|
|
11759
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11760
|
+
*/
|
|
11761
|
+
interface MagickoMap1Props extends React.SVGProps<SVGSVGElement> {
|
|
11762
|
+
size?: number | string;
|
|
11763
|
+
}
|
|
11764
|
+
/**
|
|
11765
|
+
* MagickoMap1 icon component
|
|
11766
|
+
* @example
|
|
11767
|
+
* ```tsx
|
|
11768
|
+
* import { MagickoMap1 } from 'magick-icons';
|
|
11769
|
+
*
|
|
11770
|
+
* <MagickoMap1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11771
|
+
* ```
|
|
11772
|
+
*/
|
|
11773
|
+
declare const MagickoMap1: React.ForwardRefExoticComponent<Omit<MagickoMap1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11774
|
+
|
|
11775
|
+
/**
|
|
11776
|
+
* Props for the MagickoMath icon component
|
|
11777
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11778
|
+
*/
|
|
11779
|
+
interface MagickoMathProps extends React.SVGProps<SVGSVGElement> {
|
|
11780
|
+
size?: number | string;
|
|
11781
|
+
}
|
|
11782
|
+
/**
|
|
11783
|
+
* MagickoMath icon component
|
|
11784
|
+
* @example
|
|
11785
|
+
* ```tsx
|
|
11786
|
+
* import { MagickoMath } from 'magick-icons';
|
|
11787
|
+
*
|
|
11788
|
+
* <MagickoMath size={24} className="text-blue-500" strokeWidth={2} />
|
|
11789
|
+
* ```
|
|
11790
|
+
*/
|
|
11791
|
+
declare const MagickoMath: React.ForwardRefExoticComponent<Omit<MagickoMathProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11792
|
+
|
|
11793
|
+
/**
|
|
11794
|
+
* Props for the MagickoMaximize icon component
|
|
11795
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11796
|
+
*/
|
|
11797
|
+
interface MagickoMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
11798
|
+
size?: number | string;
|
|
11799
|
+
}
|
|
11800
|
+
/**
|
|
11801
|
+
* MagickoMaximize icon component
|
|
11802
|
+
* @example
|
|
11803
|
+
* ```tsx
|
|
11804
|
+
* import { MagickoMaximize } from 'magick-icons';
|
|
11805
|
+
*
|
|
11806
|
+
* <MagickoMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
11807
|
+
* ```
|
|
11808
|
+
*/
|
|
11809
|
+
declare const MagickoMaximize: React.ForwardRefExoticComponent<Omit<MagickoMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11810
|
+
|
|
11811
|
+
/**
|
|
11812
|
+
* Props for the MagickoMaximize1 icon component
|
|
11813
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11814
|
+
*/
|
|
11815
|
+
interface MagickoMaximize1Props extends React.SVGProps<SVGSVGElement> {
|
|
11816
|
+
size?: number | string;
|
|
11817
|
+
}
|
|
11818
|
+
/**
|
|
11819
|
+
* MagickoMaximize1 icon component
|
|
11820
|
+
* @example
|
|
11821
|
+
* ```tsx
|
|
11822
|
+
* import { MagickoMaximize1 } from 'magick-icons';
|
|
11823
|
+
*
|
|
11824
|
+
* <MagickoMaximize1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11825
|
+
* ```
|
|
11826
|
+
*/
|
|
11827
|
+
declare const MagickoMaximize1: React.ForwardRefExoticComponent<Omit<MagickoMaximize1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11828
|
+
|
|
11829
|
+
/**
|
|
11830
|
+
* Props for the MagickoMaximize2 icon component
|
|
11831
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11832
|
+
*/
|
|
11833
|
+
interface MagickoMaximize2Props extends React.SVGProps<SVGSVGElement> {
|
|
11834
|
+
size?: number | string;
|
|
11835
|
+
}
|
|
11836
|
+
/**
|
|
11837
|
+
* MagickoMaximize2 icon component
|
|
11838
|
+
* @example
|
|
11839
|
+
* ```tsx
|
|
11840
|
+
* import { MagickoMaximize2 } from 'magick-icons';
|
|
11841
|
+
*
|
|
11842
|
+
* <MagickoMaximize2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11843
|
+
* ```
|
|
11844
|
+
*/
|
|
11845
|
+
declare const MagickoMaximize2: React.ForwardRefExoticComponent<Omit<MagickoMaximize2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11846
|
+
|
|
11847
|
+
/**
|
|
11848
|
+
* Props for the MagickoMaximize21 icon component
|
|
11849
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11850
|
+
*/
|
|
11851
|
+
interface MagickoMaximize21Props extends React.SVGProps<SVGSVGElement> {
|
|
11852
|
+
size?: number | string;
|
|
11853
|
+
}
|
|
11854
|
+
/**
|
|
11855
|
+
* MagickoMaximize21 icon component
|
|
11856
|
+
* @example
|
|
11857
|
+
* ```tsx
|
|
11858
|
+
* import { MagickoMaximize21 } from 'magick-icons';
|
|
11859
|
+
*
|
|
11860
|
+
* <MagickoMaximize21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11861
|
+
* ```
|
|
11862
|
+
*/
|
|
11863
|
+
declare const MagickoMaximize21: React.ForwardRefExoticComponent<Omit<MagickoMaximize21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11864
|
+
|
|
11865
|
+
/**
|
|
11866
|
+
* Props for the MagickoMaximize3 icon component
|
|
11867
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11868
|
+
*/
|
|
11869
|
+
interface MagickoMaximize3Props extends React.SVGProps<SVGSVGElement> {
|
|
11870
|
+
size?: number | string;
|
|
11871
|
+
}
|
|
11872
|
+
/**
|
|
11873
|
+
* MagickoMaximize3 icon component
|
|
11874
|
+
* @example
|
|
11875
|
+
* ```tsx
|
|
11876
|
+
* import { MagickoMaximize3 } from 'magick-icons';
|
|
11877
|
+
*
|
|
11878
|
+
* <MagickoMaximize3 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11879
|
+
* ```
|
|
11880
|
+
*/
|
|
11881
|
+
declare const MagickoMaximize3: React.ForwardRefExoticComponent<Omit<MagickoMaximize3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11882
|
+
|
|
11883
|
+
/**
|
|
11884
|
+
* Props for the MagickoMaximize4 icon component
|
|
11885
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11886
|
+
*/
|
|
11887
|
+
interface MagickoMaximize4Props extends React.SVGProps<SVGSVGElement> {
|
|
11888
|
+
size?: number | string;
|
|
11889
|
+
}
|
|
11890
|
+
/**
|
|
11891
|
+
* MagickoMaximize4 icon component
|
|
11892
|
+
* @example
|
|
11893
|
+
* ```tsx
|
|
11894
|
+
* import { MagickoMaximize4 } from 'magick-icons';
|
|
11895
|
+
*
|
|
11896
|
+
* <MagickoMaximize4 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11897
|
+
* ```
|
|
11898
|
+
*/
|
|
11899
|
+
declare const MagickoMaximize4: React.ForwardRefExoticComponent<Omit<MagickoMaximize4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11900
|
+
|
|
11901
|
+
/**
|
|
11902
|
+
* Props for the MagickoMaximizeCircle icon component
|
|
11903
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11904
|
+
*/
|
|
11905
|
+
interface MagickoMaximizeCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
11906
|
+
size?: number | string;
|
|
11907
|
+
}
|
|
11908
|
+
/**
|
|
11909
|
+
* MagickoMaximizeCircle icon component
|
|
11910
|
+
* @example
|
|
11911
|
+
* ```tsx
|
|
11912
|
+
* import { MagickoMaximizeCircle } from 'magick-icons';
|
|
11913
|
+
*
|
|
11914
|
+
* <MagickoMaximizeCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
11915
|
+
* ```
|
|
11916
|
+
*/
|
|
11917
|
+
declare const MagickoMaximizeCircle: React.ForwardRefExoticComponent<Omit<MagickoMaximizeCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11918
|
+
|
|
11919
|
+
/**
|
|
11920
|
+
* Props for the MagickoMaximizefinger icon component
|
|
11921
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11922
|
+
*/
|
|
11923
|
+
interface MagickoMaximizefingerProps extends React.SVGProps<SVGSVGElement> {
|
|
11924
|
+
size?: number | string;
|
|
11925
|
+
}
|
|
11926
|
+
/**
|
|
11927
|
+
* MagickoMaximizefinger icon component
|
|
11928
|
+
* @example
|
|
11929
|
+
* ```tsx
|
|
11930
|
+
* import { MagickoMaximizefinger } from 'magick-icons';
|
|
11931
|
+
*
|
|
11932
|
+
* <MagickoMaximizefinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
11933
|
+
* ```
|
|
11934
|
+
*/
|
|
11935
|
+
declare const MagickoMaximizefinger: React.ForwardRefExoticComponent<Omit<MagickoMaximizefingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11936
|
+
|
|
11937
|
+
/**
|
|
11938
|
+
* Props for the MagickoMenu icon component
|
|
11939
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11940
|
+
*/
|
|
11941
|
+
interface MagickoMenuProps extends React.SVGProps<SVGSVGElement> {
|
|
11942
|
+
size?: number | string;
|
|
11943
|
+
}
|
|
11944
|
+
/**
|
|
11945
|
+
* MagickoMenu icon component
|
|
11946
|
+
* @example
|
|
11947
|
+
* ```tsx
|
|
11948
|
+
* import { MagickoMenu } from 'magick-icons';
|
|
11949
|
+
*
|
|
11950
|
+
* <MagickoMenu size={24} className="text-blue-500" strokeWidth={2} />
|
|
11951
|
+
* ```
|
|
11952
|
+
*/
|
|
11953
|
+
declare const MagickoMenu: React.ForwardRefExoticComponent<Omit<MagickoMenuProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11954
|
+
|
|
11955
|
+
/**
|
|
11956
|
+
* Props for the MagickoMenu1 icon component
|
|
11957
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11958
|
+
*/
|
|
11959
|
+
interface MagickoMenu1Props extends React.SVGProps<SVGSVGElement> {
|
|
11960
|
+
size?: number | string;
|
|
11961
|
+
}
|
|
11962
|
+
/**
|
|
11963
|
+
* MagickoMenu1 icon component
|
|
11964
|
+
* @example
|
|
11965
|
+
* ```tsx
|
|
11966
|
+
* import { MagickoMenu1 } from 'magick-icons';
|
|
11967
|
+
*
|
|
11968
|
+
* <MagickoMenu1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
11969
|
+
* ```
|
|
11970
|
+
*/
|
|
11971
|
+
declare const MagickoMenu1: React.ForwardRefExoticComponent<Omit<MagickoMenu1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11972
|
+
|
|
11973
|
+
/**
|
|
11974
|
+
* Props for the MagickoMenuBoard icon component
|
|
11975
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11976
|
+
*/
|
|
11977
|
+
interface MagickoMenuBoardProps extends React.SVGProps<SVGSVGElement> {
|
|
11978
|
+
size?: number | string;
|
|
11979
|
+
}
|
|
11980
|
+
/**
|
|
11981
|
+
* MagickoMenuBoard icon component
|
|
11982
|
+
* @example
|
|
11983
|
+
* ```tsx
|
|
11984
|
+
* import { MagickoMenuBoard } from 'magick-icons';
|
|
11985
|
+
*
|
|
11986
|
+
* <MagickoMenuBoard size={24} className="text-blue-500" strokeWidth={2} />
|
|
11987
|
+
* ```
|
|
11988
|
+
*/
|
|
11989
|
+
declare const MagickoMenuBoard: React.ForwardRefExoticComponent<Omit<MagickoMenuBoardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11990
|
+
|
|
11991
|
+
/**
|
|
11992
|
+
* Props for the MagickoMessageFavorite icon component
|
|
11993
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
11994
|
+
*/
|
|
11995
|
+
interface MagickoMessageFavoriteProps extends React.SVGProps<SVGSVGElement> {
|
|
11996
|
+
size?: number | string;
|
|
11997
|
+
}
|
|
11998
|
+
/**
|
|
11999
|
+
* MagickoMessageFavorite icon component
|
|
12000
|
+
* @example
|
|
12001
|
+
* ```tsx
|
|
12002
|
+
* import { MagickoMessageFavorite } from 'magick-icons';
|
|
12003
|
+
*
|
|
12004
|
+
* <MagickoMessageFavorite size={24} className="text-blue-500" strokeWidth={2} />
|
|
12005
|
+
* ```
|
|
12006
|
+
*/
|
|
12007
|
+
declare const MagickoMessageFavorite: React.ForwardRefExoticComponent<Omit<MagickoMessageFavoriteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12008
|
+
|
|
12009
|
+
/**
|
|
12010
|
+
* Props for the MagickoMessageNotif icon component
|
|
12011
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12012
|
+
*/
|
|
12013
|
+
interface MagickoMessageNotifProps extends React.SVGProps<SVGSVGElement> {
|
|
12014
|
+
size?: number | string;
|
|
12015
|
+
}
|
|
12016
|
+
/**
|
|
12017
|
+
* MagickoMessageNotif icon component
|
|
12018
|
+
* @example
|
|
12019
|
+
* ```tsx
|
|
12020
|
+
* import { MagickoMessageNotif } from 'magick-icons';
|
|
12021
|
+
*
|
|
12022
|
+
* <MagickoMessageNotif size={24} className="text-blue-500" strokeWidth={2} />
|
|
12023
|
+
* ```
|
|
12024
|
+
*/
|
|
12025
|
+
declare const MagickoMessageNotif: React.ForwardRefExoticComponent<Omit<MagickoMessageNotifProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12026
|
+
|
|
12027
|
+
/**
|
|
12028
|
+
* Props for the MagickoMessageSearch icon component
|
|
12029
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12030
|
+
*/
|
|
12031
|
+
interface MagickoMessageSearchProps extends React.SVGProps<SVGSVGElement> {
|
|
12032
|
+
size?: number | string;
|
|
12033
|
+
}
|
|
12034
|
+
/**
|
|
12035
|
+
* MagickoMessageSearch icon component
|
|
12036
|
+
* @example
|
|
12037
|
+
* ```tsx
|
|
12038
|
+
* import { MagickoMessageSearch } from 'magick-icons';
|
|
12039
|
+
*
|
|
12040
|
+
* <MagickoMessageSearch size={24} className="text-blue-500" strokeWidth={2} />
|
|
12041
|
+
* ```
|
|
12042
|
+
*/
|
|
12043
|
+
declare const MagickoMessageSearch: React.ForwardRefExoticComponent<Omit<MagickoMessageSearchProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12044
|
+
|
|
12045
|
+
/**
|
|
12046
|
+
* Props for the MagickoMessageText icon component
|
|
12047
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12048
|
+
*/
|
|
12049
|
+
interface MagickoMessageTextProps extends React.SVGProps<SVGSVGElement> {
|
|
12050
|
+
size?: number | string;
|
|
12051
|
+
}
|
|
12052
|
+
/**
|
|
12053
|
+
* MagickoMessageText icon component
|
|
12054
|
+
* @example
|
|
12055
|
+
* ```tsx
|
|
12056
|
+
* import { MagickoMessageText } from 'magick-icons';
|
|
12057
|
+
*
|
|
12058
|
+
* <MagickoMessageText size={24} className="text-blue-500" strokeWidth={2} />
|
|
12059
|
+
* ```
|
|
12060
|
+
*/
|
|
12061
|
+
declare const MagickoMessageText: React.ForwardRefExoticComponent<Omit<MagickoMessageTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12062
|
+
|
|
12063
|
+
/**
|
|
12064
|
+
* Props for the MagickoMicrophone icon component
|
|
12065
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12066
|
+
*/
|
|
12067
|
+
interface MagickoMicrophoneProps extends React.SVGProps<SVGSVGElement> {
|
|
12068
|
+
size?: number | string;
|
|
12069
|
+
}
|
|
12070
|
+
/**
|
|
12071
|
+
* MagickoMicrophone icon component
|
|
12072
|
+
* @example
|
|
12073
|
+
* ```tsx
|
|
12074
|
+
* import { MagickoMicrophone } from 'magick-icons';
|
|
12075
|
+
*
|
|
12076
|
+
* <MagickoMicrophone size={24} className="text-blue-500" strokeWidth={2} />
|
|
12077
|
+
* ```
|
|
12078
|
+
*/
|
|
12079
|
+
declare const MagickoMicrophone: React.ForwardRefExoticComponent<Omit<MagickoMicrophoneProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12080
|
+
|
|
12081
|
+
/**
|
|
12082
|
+
* Props for the MagickoMicrophone1 icon component
|
|
12083
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12084
|
+
*/
|
|
12085
|
+
interface MagickoMicrophone1Props extends React.SVGProps<SVGSVGElement> {
|
|
12086
|
+
size?: number | string;
|
|
12087
|
+
}
|
|
12088
|
+
/**
|
|
12089
|
+
* MagickoMicrophone1 icon component
|
|
12090
|
+
* @example
|
|
12091
|
+
* ```tsx
|
|
12092
|
+
* import { MagickoMicrophone1 } from 'magick-icons';
|
|
12093
|
+
*
|
|
12094
|
+
* <MagickoMicrophone1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12095
|
+
* ```
|
|
12096
|
+
*/
|
|
12097
|
+
declare const MagickoMicrophone1: React.ForwardRefExoticComponent<Omit<MagickoMicrophone1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12098
|
+
|
|
12099
|
+
/**
|
|
12100
|
+
* Props for the MagickoMicrophone2 icon component
|
|
12101
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12102
|
+
*/
|
|
12103
|
+
interface MagickoMicrophone2Props extends React.SVGProps<SVGSVGElement> {
|
|
12104
|
+
size?: number | string;
|
|
12105
|
+
}
|
|
12106
|
+
/**
|
|
12107
|
+
* MagickoMicrophone2 icon component
|
|
12108
|
+
* @example
|
|
12109
|
+
* ```tsx
|
|
12110
|
+
* import { MagickoMicrophone2 } from 'magick-icons';
|
|
12111
|
+
*
|
|
12112
|
+
* <MagickoMicrophone2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12113
|
+
* ```
|
|
12114
|
+
*/
|
|
12115
|
+
declare const MagickoMicrophone2: React.ForwardRefExoticComponent<Omit<MagickoMicrophone2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12116
|
+
|
|
12117
|
+
/**
|
|
12118
|
+
* Props for the MagickoMicrophone21 icon component
|
|
12119
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12120
|
+
*/
|
|
12121
|
+
interface MagickoMicrophone21Props extends React.SVGProps<SVGSVGElement> {
|
|
12122
|
+
size?: number | string;
|
|
12123
|
+
}
|
|
12124
|
+
/**
|
|
12125
|
+
* MagickoMicrophone21 icon component
|
|
12126
|
+
* @example
|
|
12127
|
+
* ```tsx
|
|
12128
|
+
* import { MagickoMicrophone21 } from 'magick-icons';
|
|
12129
|
+
*
|
|
12130
|
+
* <MagickoMicrophone21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12131
|
+
* ```
|
|
12132
|
+
*/
|
|
12133
|
+
declare const MagickoMicrophone21: React.ForwardRefExoticComponent<Omit<MagickoMicrophone21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12134
|
+
|
|
12135
|
+
/**
|
|
12136
|
+
* Props for the MagickoMicrophone211 icon component
|
|
12137
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12138
|
+
*/
|
|
12139
|
+
interface MagickoMicrophone211Props extends React.SVGProps<SVGSVGElement> {
|
|
12140
|
+
size?: number | string;
|
|
12141
|
+
}
|
|
12142
|
+
/**
|
|
12143
|
+
* MagickoMicrophone211 icon component
|
|
12144
|
+
* @example
|
|
12145
|
+
* ```tsx
|
|
12146
|
+
* import { MagickoMicrophone211 } from 'magick-icons';
|
|
12147
|
+
*
|
|
12148
|
+
* <MagickoMicrophone211 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12149
|
+
* ```
|
|
12150
|
+
*/
|
|
12151
|
+
declare const MagickoMicrophone211: React.ForwardRefExoticComponent<Omit<MagickoMicrophone211Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12152
|
+
|
|
12153
|
+
/**
|
|
12154
|
+
* Props for the MagickoMicrophone3 icon component
|
|
12155
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12156
|
+
*/
|
|
12157
|
+
interface MagickoMicrophone3Props extends React.SVGProps<SVGSVGElement> {
|
|
12158
|
+
size?: number | string;
|
|
12159
|
+
}
|
|
12160
|
+
/**
|
|
12161
|
+
* MagickoMicrophone3 icon component
|
|
12162
|
+
* @example
|
|
12163
|
+
* ```tsx
|
|
12164
|
+
* import { MagickoMicrophone3 } from 'magick-icons';
|
|
12165
|
+
*
|
|
12166
|
+
* <MagickoMicrophone3 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12167
|
+
* ```
|
|
12168
|
+
*/
|
|
12169
|
+
declare const MagickoMicrophone3: React.ForwardRefExoticComponent<Omit<MagickoMicrophone3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12170
|
+
|
|
12171
|
+
/**
|
|
12172
|
+
* Props for the MagickoMicrophoneSlash icon component
|
|
12173
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12174
|
+
*/
|
|
12175
|
+
interface MagickoMicrophoneSlashProps extends React.SVGProps<SVGSVGElement> {
|
|
12176
|
+
size?: number | string;
|
|
12177
|
+
}
|
|
12178
|
+
/**
|
|
12179
|
+
* MagickoMicrophoneSlash icon component
|
|
12180
|
+
* @example
|
|
12181
|
+
* ```tsx
|
|
12182
|
+
* import { MagickoMicrophoneSlash } from 'magick-icons';
|
|
12183
|
+
*
|
|
12184
|
+
* <MagickoMicrophoneSlash size={24} className="text-blue-500" strokeWidth={2} />
|
|
12185
|
+
* ```
|
|
12186
|
+
*/
|
|
12187
|
+
declare const MagickoMicrophoneSlash: React.ForwardRefExoticComponent<Omit<MagickoMicrophoneSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12188
|
+
|
|
12189
|
+
/**
|
|
12190
|
+
* Props for the MagickoMicrophoneSlash1 icon component
|
|
12191
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12192
|
+
*/
|
|
12193
|
+
interface MagickoMicrophoneSlash1Props extends React.SVGProps<SVGSVGElement> {
|
|
12194
|
+
size?: number | string;
|
|
12195
|
+
}
|
|
12196
|
+
/**
|
|
12197
|
+
* MagickoMicrophoneSlash1 icon component
|
|
12198
|
+
* @example
|
|
12199
|
+
* ```tsx
|
|
12200
|
+
* import { MagickoMicrophoneSlash1 } from 'magick-icons';
|
|
12201
|
+
*
|
|
12202
|
+
* <MagickoMicrophoneSlash1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12203
|
+
* ```
|
|
12204
|
+
*/
|
|
12205
|
+
declare const MagickoMicrophoneSlash1: React.ForwardRefExoticComponent<Omit<MagickoMicrophoneSlash1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12206
|
+
|
|
12207
|
+
/**
|
|
12208
|
+
* Props for the MagickoMiddleFinger icon component
|
|
12209
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12210
|
+
*/
|
|
12211
|
+
interface MagickoMiddleFingerProps extends React.SVGProps<SVGSVGElement> {
|
|
12212
|
+
size?: number | string;
|
|
12213
|
+
}
|
|
12214
|
+
/**
|
|
12215
|
+
* MagickoMiddleFinger icon component
|
|
12216
|
+
* @example
|
|
12217
|
+
* ```tsx
|
|
12218
|
+
* import { MagickoMiddleFinger } from 'magick-icons';
|
|
12219
|
+
*
|
|
12220
|
+
* <MagickoMiddleFinger size={24} className="text-blue-500" strokeWidth={2} />
|
|
12221
|
+
* ```
|
|
12222
|
+
*/
|
|
12223
|
+
declare const MagickoMiddleFinger: React.ForwardRefExoticComponent<Omit<MagickoMiddleFingerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12224
|
+
|
|
12225
|
+
/**
|
|
12226
|
+
* Props for the MagickoMinus icon component
|
|
12227
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12228
|
+
*/
|
|
12229
|
+
interface MagickoMinusProps extends React.SVGProps<SVGSVGElement> {
|
|
12230
|
+
size?: number | string;
|
|
12231
|
+
}
|
|
12232
|
+
/**
|
|
12233
|
+
* MagickoMinus icon component
|
|
12234
|
+
* @example
|
|
12235
|
+
* ```tsx
|
|
12236
|
+
* import { MagickoMinus } from 'magick-icons';
|
|
12237
|
+
*
|
|
12238
|
+
* <MagickoMinus size={24} className="text-blue-500" strokeWidth={2} />
|
|
12239
|
+
* ```
|
|
12240
|
+
*/
|
|
12241
|
+
declare const MagickoMinus: React.ForwardRefExoticComponent<Omit<MagickoMinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12242
|
+
|
|
12243
|
+
/**
|
|
12244
|
+
* Props for the MagickoMinus1 icon component
|
|
12245
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12246
|
+
*/
|
|
12247
|
+
interface MagickoMinus1Props extends React.SVGProps<SVGSVGElement> {
|
|
12248
|
+
size?: number | string;
|
|
12249
|
+
}
|
|
12250
|
+
/**
|
|
12251
|
+
* MagickoMinus1 icon component
|
|
12252
|
+
* @example
|
|
12253
|
+
* ```tsx
|
|
12254
|
+
* import { MagickoMinus1 } from 'magick-icons';
|
|
12255
|
+
*
|
|
12256
|
+
* <MagickoMinus1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12257
|
+
* ```
|
|
12258
|
+
*/
|
|
12259
|
+
declare const MagickoMinus1: React.ForwardRefExoticComponent<Omit<MagickoMinus1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12260
|
+
|
|
12261
|
+
/**
|
|
12262
|
+
* Props for the MagickoMinusCircle icon component
|
|
12263
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12264
|
+
*/
|
|
12265
|
+
interface MagickoMinusCircleProps extends React.SVGProps<SVGSVGElement> {
|
|
12266
|
+
size?: number | string;
|
|
12267
|
+
}
|
|
12268
|
+
/**
|
|
12269
|
+
* MagickoMinusCircle icon component
|
|
12270
|
+
* @example
|
|
12271
|
+
* ```tsx
|
|
12272
|
+
* import { MagickoMinusCircle } from 'magick-icons';
|
|
12273
|
+
*
|
|
12274
|
+
* <MagickoMinusCircle size={24} className="text-blue-500" strokeWidth={2} />
|
|
12275
|
+
* ```
|
|
12276
|
+
*/
|
|
12277
|
+
declare const MagickoMinusCircle: React.ForwardRefExoticComponent<Omit<MagickoMinusCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12278
|
+
|
|
12279
|
+
/**
|
|
12280
|
+
* Props for the MagickoMinusSquare icon component
|
|
12281
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12282
|
+
*/
|
|
12283
|
+
interface MagickoMinusSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
12284
|
+
size?: number | string;
|
|
12285
|
+
}
|
|
12286
|
+
/**
|
|
12287
|
+
* MagickoMinusSquare icon component
|
|
12288
|
+
* @example
|
|
12289
|
+
* ```tsx
|
|
12290
|
+
* import { MagickoMinusSquare } from 'magick-icons';
|
|
12291
|
+
*
|
|
12292
|
+
* <MagickoMinusSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
12293
|
+
* ```
|
|
12294
|
+
*/
|
|
12295
|
+
declare const MagickoMinusSquare: React.ForwardRefExoticComponent<Omit<MagickoMinusSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12296
|
+
|
|
12297
|
+
/**
|
|
12298
|
+
* Props for the MagickoMirroringScreen icon component
|
|
12299
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12300
|
+
*/
|
|
12301
|
+
interface MagickoMirroringScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
12302
|
+
size?: number | string;
|
|
12303
|
+
}
|
|
12304
|
+
/**
|
|
12305
|
+
* MagickoMirroringScreen icon component
|
|
12306
|
+
* @example
|
|
12307
|
+
* ```tsx
|
|
12308
|
+
* import { MagickoMirroringScreen } from 'magick-icons';
|
|
12309
|
+
*
|
|
12310
|
+
* <MagickoMirroringScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
12311
|
+
* ```
|
|
12312
|
+
*/
|
|
12313
|
+
declare const MagickoMirroringScreen: React.ForwardRefExoticComponent<Omit<MagickoMirroringScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12314
|
+
|
|
12315
|
+
/**
|
|
12316
|
+
* Props for the MagickoMobile1 icon component
|
|
12317
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
12318
|
+
*/
|
|
12319
|
+
interface MagickoMobile1Props extends React.SVGProps<SVGSVGElement> {
|
|
12320
|
+
size?: number | string;
|
|
12321
|
+
}
|
|
12322
|
+
/**
|
|
12323
|
+
* MagickoMobile1 icon component
|
|
12324
|
+
* @example
|
|
12325
|
+
* ```tsx
|
|
12326
|
+
* import { MagickoMobile1 } from 'magick-icons';
|
|
12327
|
+
*
|
|
12328
|
+
* <MagickoMobile1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
12329
|
+
* ```
|
|
12330
|
+
*/
|
|
12331
|
+
declare const MagickoMobile1: React.ForwardRefExoticComponent<Omit<MagickoMobile1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
12332
|
+
|
|
11253
12333
|
/**
|
|
11254
12334
|
* Props for the Marketing icon component
|
|
11255
12335
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -11538,4 +12618,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
11538
12618
|
*/
|
|
11539
12619
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11540
12620
|
|
|
11541
|
-
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguageCircle, type MagickoLanguageCircleProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, 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 };
|
|
12621
|
+
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, BookmarkFilled, type BookmarkFilledProps, Box21, type Box21Props, BoxAdd1, type BoxAdd1Props, BoxRemove1, type BoxRemove1Props, BoxSearch1, type BoxSearch1Props, BoxTick1, type BoxTick1Props, BoxTime1, type BoxTime1Props, Brush1, Brush11, type Brush11Props, type Brush1Props, Brush21, type Brush21Props, Brush31, type Brush31Props, Brush41, type Brush41Props, BrushSquare1, type BrushSquare1Props, Bubble1, type Bubble1Props, Bucket1, type Bucket1Props, BucketCircle1, type BucketCircle1Props, BucketSquare1, type BucketSquare1Props, Cake1, type Cake1Props, Calendar, type CalendarProps, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, CardanoAda, type CardanoAdaProps, Cards1, Cards11, type Cards11Props, type Cards1Props, Cd1, type Cd1Props, Centralized1, type Centralized1Props, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Coin1, type Coin1Props, Coins1, type Coins1Props, ColorSwatch1, type ColorSwatch1Props, Colorfilter1, type Colorfilter1Props, ColorsSquare1, type ColorsSquare1Props, Component1, type Component1Props, Computing1, type Computing1Props, Convert3dCube1, type Convert3dCube1Props, ConvertCard1, type ConvertCard1Props, Convertshape1, type Convertshape1Props, Convertshape21, type Convertshape21Props, Crop1, Crop11, type Crop11Props, type Crop1Props, Crown1, Crown11, type Crown11Props, type Crown1Props, Cup1, Cup11, type Cup11Props, type Cup1Props, Danger1, type Danger1Props, Designtools1, type Designtools1Props, DeviceMessage1, type DeviceMessage1Props, Diamonds1, Diamonds11, type Diamonds11Props, type Diamonds1Props, DiscountShape1, type DiscountShape1Props, Discover1, Discover11, type Discover11Props, type Discover1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, EmptyWalletAdd1, type EmptyWalletAdd1Props, EmptyWalletChange1, type EmptyWalletChange1Props, EmptyWalletRemove1, type EmptyWalletRemove1Props, EmptyWalletTick1, type EmptyWalletTick1Props, EmptyWalletTime1, type EmptyWalletTime1Props, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Filter1, type Filter1Props, FilterAdd1, type FilterAdd1Props, FilterEdit1, type FilterEdit1Props, FilterRemove1, type FilterRemove1Props, FilterSearch1, type FilterSearch1Props, FilterSquare1, type FilterSquare1Props, FilterTick1, type FilterTick1Props, Finance, type FinanceProps, Flag, Flag1, type Flag1Props, Flag21, type Flag21Props, type FlagProps, Flash1, type Flash1Props, FlashCircle1, FlashCircle11, type FlashCircle11Props, type FlashCircle1Props, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, Forbidden1, Forbidden11, type Forbidden11Props, type Forbidden1Props, Forbidden21, Forbidden211, type Forbidden211Props, type Forbidden21Props, FormatCircle1, type FormatCircle1Props, FormatSquare1, type FormatSquare1Props, ForwardItem1, type ForwardItem1Props, GeneralMagicko, type GeneralMagickoProps, Glass1, Glass11, type Glass11Props, type Glass1Props, GlobalEdit1, type GlobalEdit1Props, GlobalRefresh1, type GlobalRefresh1Props, GlobalSearch1, type GlobalSearch1Props, GridEdit1, type GridEdit1Props, GridEraser1, type GridEraser1Props, GridLock1, GridLock11, type GridLock11Props, type GridLock1Props, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Home1, Home11, type Home11Props, type Home1Props, Home21, type Home21Props, Home31, Home311, type Home311Props, type Home31Props, HomeWifi1, type HomeWifi1Props, Hr, type HrProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircle, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, type IconsaxAttachCircleProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxFeather2, type IconsaxFeather2Props, IconsaxMinimize4, type IconsaxMinimize4Props, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxPin, type IconsaxPinProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCamera, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, type IconsaxVideoCameraProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Instagram1, Instagram11, type Instagram11Props, type Instagram1Props, Judge1, type Judge1Props, LayoutAdjust1, type LayoutAdjust1Props, Legal, type LegalProps, Level1, type Level1Props, Lifebuoy1, type Lifebuoy1Props, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, Location1, type Location1Props, LocationAdd1, type LocationAdd1Props, LocationCross1, type LocationCross1Props, LocationMinus1, type LocationMinus1Props, LocationTick1, type LocationTick1Props, Lock, type LockProps, MagickPotion, type MagickPotionProps, Magicko365Arrow, type Magicko365ArrowProps, Magicko3DotsMore, type Magicko3DotsMoreProps, Magicko3dCubeScan1, type Magicko3dCubeScan1Props, Magicko3dRotate1, type Magicko3dRotate1Props, Magicko3dSquare1, type Magicko3dSquare1Props, MagickoActivity, type MagickoActivityProps, MagickoAdd, type MagickoAddProps, MagickoAddSquare, type MagickoAddSquareProps, MagickoAi3d, MagickoAi3dBox, type MagickoAi3dBoxProps, type MagickoAi3dProps, MagickoAiAc, type MagickoAiAcProps, MagickoAiAdd, type MagickoAiAddProps, MagickoAiAntenna, type MagickoAiAntennaProps, MagickoAiAssist, type MagickoAiAssistProps, MagickoAiAudio, type MagickoAiAudioProps, MagickoAiChatting, type MagickoAiChattingProps, MagickoAiClipboard, type MagickoAiClipboardProps, MagickoAiClock, type MagickoAiClockProps, MagickoAiCommentary, type MagickoAiCommentaryProps, MagickoAiCreateDocument, type MagickoAiCreateDocumentProps, MagickoAiCreateFile, type MagickoAiCreateFileProps, MagickoAiCreativity, type MagickoAiCreativityProps, MagickoAiDialogue, type MagickoAiDialogueProps, MagickoAiDirectInbox, type MagickoAiDirectInboxProps, MagickoAiDirectboxReceive, type MagickoAiDirectboxReceiveProps, MagickoAiDocument, MagickoAiDocument2, type MagickoAiDocument2Props, type MagickoAiDocumentProps, MagickoAiDrink, type MagickoAiDrinkProps, MagickoAiEnergy, type MagickoAiEnergyProps, MagickoAiEngine, type MagickoAiEngineProps, MagickoAiEnhance, type MagickoAiEnhanceProps, MagickoAiExport, type MagickoAiExportProps, MagickoAiFile, MagickoAiFileAi, type MagickoAiFileAiProps, type MagickoAiFileProps, MagickoAiFuelTank, type MagickoAiFuelTankProps, MagickoAiHeartSquare, type MagickoAiHeartSquareProps, MagickoAiHomepage, type MagickoAiHomepageProps, MagickoAiHospital, type MagickoAiHospitalProps, MagickoAiHousing, type MagickoAiHousingProps, MagickoAiLandscape, type MagickoAiLandscapeProps, MagickoAiLoveletter, type MagickoAiLoveletterProps, MagickoAiMagicHat, type MagickoAiMagicHatProps, MagickoAiMessage, type MagickoAiMessageProps, MagickoAiMicrophone, type MagickoAiMicrophoneProps, MagickoAiNote, type MagickoAiNoteProps, MagickoAiPaintBrush, type MagickoAiPaintBrushProps, MagickoAiPaintroller, type MagickoAiPaintrollerProps, MagickoAiPenEdit, type MagickoAiPenEditProps, MagickoAiPoweredSupport, type MagickoAiPoweredSupportProps, MagickoAiRecordVideo, type MagickoAiRecordVideoProps, MagickoAiSandTimer, type MagickoAiSandTimerProps, MagickoAiSendMessage, type MagickoAiSendMessageProps, MagickoAiShapeTriangle, type MagickoAiShapeTriangleProps, MagickoAiSparkle, type MagickoAiSparkleProps, MagickoAiSyringe, type MagickoAiSyringeProps, MagickoAiTagPrice, type MagickoAiTagPriceProps, MagickoAiTools, type MagickoAiToolsProps, MagickoAiUsers, type MagickoAiUsersProps, MagickoAiWaterCycle, type MagickoAiWaterCycleProps, MagickoAiWeight, type MagickoAiWeightProps, MagickoAirdrop, type MagickoAirdropProps, MagickoAirplane, MagickoAirplane1, type MagickoAirplane1Props, type MagickoAirplaneProps, MagickoAirplaneSquare, type MagickoAirplaneSquareProps, MagickoAirpod, type MagickoAirpodProps, MagickoAirpods, MagickoAirpods1, type MagickoAirpods1Props, type MagickoAirpodsProps, MagickoAlarm, MagickoAlarm1, type MagickoAlarm1Props, type MagickoAlarmProps, MagickoAlignBottom, type MagickoAlignBottomProps, MagickoAlignHorizontally, type MagickoAlignHorizontallyProps, MagickoAlignLeft, MagickoAlignLeft2, type MagickoAlignLeft2Props, type MagickoAlignLeftProps, MagickoAlignRight, type MagickoAlignRightProps, MagickoAlignTop, MagickoAlignTop2, type MagickoAlignTop2Props, type MagickoAlignTopProps, MagickoAlignVertically, type MagickoAlignVerticallyProps, MagickoAquarius, type MagickoAquariusProps, MagickoArchive, MagickoArchive1, type MagickoArchive1Props, MagickoArchive2, type MagickoArchive2Props, MagickoArchiveAdd, type MagickoArchiveAddProps, MagickoArchiveBook1, type MagickoArchiveBook1Props, MagickoArchiveMinus, type MagickoArchiveMinusProps, type MagickoArchiveProps, MagickoArchiveSlash, type MagickoArchiveSlashProps, MagickoArchiveTick, type MagickoArchiveTickProps, MagickoArrow, MagickoArrowBack, type MagickoArrowBackProps, MagickoArrowCircleDown, type MagickoArrowCircleDownProps, MagickoArrowCircleLeft, type MagickoArrowCircleLeftProps, MagickoArrowCircleRight, type MagickoArrowCircleRightProps, MagickoArrowCircleUp, type MagickoArrowCircleUpProps, MagickoArrowDiagonal01, type MagickoArrowDiagonal01Props, MagickoArrowDiagonal02, type MagickoArrowDiagonal02Props, MagickoArrowDiagonal03, type MagickoArrowDiagonal03Props, MagickoArrowDiagonal04, type MagickoArrowDiagonal04Props, MagickoArrowDown01, type MagickoArrowDown01Props, MagickoArrowDown03, type MagickoArrowDown03Props, MagickoArrowDown04, type MagickoArrowDown04Props, MagickoArrowForward, type MagickoArrowForwardProps, MagickoArrowLeft01, type MagickoArrowLeft01Props, MagickoArrowLeft03, type MagickoArrowLeft03Props, MagickoArrowLeft04, type MagickoArrowLeft04Props, type MagickoArrowProps, MagickoArrowRight01, type MagickoArrowRight01Props, MagickoArrowRight03, type MagickoArrowRight03Props, MagickoArrowRight04, type MagickoArrowRight04Props, MagickoArrowSquare, MagickoArrowSquareDown, type MagickoArrowSquareDownProps, MagickoArrowSquareLeft, type MagickoArrowSquareLeftProps, type MagickoArrowSquareProps, MagickoArrowSquareRight, type MagickoArrowSquareRightProps, MagickoArrowSquareUp, type MagickoArrowSquareUpProps, MagickoArrowSwap01, type MagickoArrowSwap01Props, MagickoArrowSwap02, type MagickoArrowSwap02Props, MagickoArrowSwap03, type MagickoArrowSwap03Props, MagickoArrowTransfer01, type MagickoArrowTransfer01Props, MagickoArrowTransfer02, type MagickoArrowTransfer02Props, MagickoArrowUp01, type MagickoArrowUp01Props, MagickoArrowUp03, type MagickoArrowUp03Props, MagickoArrowUp04, type MagickoArrowUp04Props, MagickoAscendingArrow, type MagickoAscendingArrowProps, MagickoAtom, MagickoAtom1, type MagickoAtom1Props, type MagickoAtomProps, MagickoBackward, MagickoBackward10Seconds, type MagickoBackward10SecondsProps, MagickoBackward15Seconds, type MagickoBackward15SecondsProps, MagickoBackward5Seconds, type MagickoBackward5SecondsProps, type MagickoBackwardProps, MagickoBag, MagickoBag1, type MagickoBag1Props, MagickoBag2, MagickoBag21, type MagickoBag21Props, type MagickoBag2Props, MagickoBagHappy, type MagickoBagHappyProps, type MagickoBagProps, MagickoBank, MagickoBank1, type MagickoBank1Props, MagickoBank2, type MagickoBank2Props, type MagickoBankProps, MagickoBarcode, type MagickoBarcodeProps, MagickoBill, type MagickoBillProps, MagickoBitcoinCard1, type MagickoBitcoinCard1Props, MagickoBitcoinConvert1, type MagickoBitcoinConvert1Props, MagickoBitcoinRefresh1, type MagickoBitcoinRefresh1Props, MagickoBluetooth, MagickoBluetooth2, type MagickoBluetooth2Props, MagickoBluetoothCircle, type MagickoBluetoothCircleProps, type MagickoBluetoothProps, MagickoBluetoothRectangle, type MagickoBluetoothRectangleProps, MagickoBook, MagickoBookOpen, type MagickoBookOpenProps, type MagickoBookProps, MagickoBookSaved, type MagickoBookSavedProps, MagickoBookSquare, type MagickoBookSquareProps, MagickoBookmark, type MagickoBookmarkProps, MagickoBox, MagickoBox1, type MagickoBox1Props, MagickoBox2, type MagickoBox2Props, type MagickoBoxProps, MagickoBriefcase, MagickoBriefcase1, type MagickoBriefcase1Props, MagickoBriefcase2, type MagickoBriefcase2Props, type MagickoBriefcaseProps, MagickoBroom, type MagickoBroomProps, MagickoBrushMakeup, type MagickoBrushMakeupProps, MagickoBuilding, MagickoBuilding3, type MagickoBuilding3Props, MagickoBuilding4, type MagickoBuilding4Props, MagickoBuilding5, type MagickoBuilding5Props, type MagickoBuildingProps, MagickoBuildings, MagickoBuildings1, type MagickoBuildings1Props, MagickoBuildings2, MagickoBuildings21, type MagickoBuildings21Props, type MagickoBuildings2Props, type MagickoBuildingsProps, MagickoBus, MagickoBus1, type MagickoBus1Props, type MagickoBusProps, MagickoBuyCrypto1, type MagickoBuyCrypto1Props, MagickoCalculator, MagickoCalculator1, type MagickoCalculator1Props, type MagickoCalculatorProps, MagickoCalendar1, type MagickoCalendar1Props, MagickoCalendar2, type MagickoCalendar2Props, MagickoCalendarAdd, type MagickoCalendarAddProps, MagickoCalendarDate, type MagickoCalendarDateProps, MagickoCalendarEdit, type MagickoCalendarEditProps, MagickoCalendarRemove, type MagickoCalendarRemoveProps, MagickoCalendarSearch, type MagickoCalendarSearchProps, MagickoCalendarTick, type MagickoCalendarTickProps, MagickoCall, MagickoCallAdd, type MagickoCallAddProps, MagickoCallCalling, type MagickoCallCallingProps, MagickoCallIncoming, type MagickoCallIncomingProps, MagickoCallMinus, type MagickoCallMinusProps, MagickoCallOutgoing, type MagickoCallOutgoingProps, type MagickoCallProps, MagickoCallReceived, type MagickoCallReceivedProps, MagickoCallRemove, type MagickoCallRemoveProps, MagickoCallSlash, type MagickoCallSlashProps, MagickoCamera, type MagickoCameraProps, MagickoCaptions, type MagickoCaptionsProps, MagickoCaptionsUnavailable, MagickoCaptionsUnavailable2, MagickoCaptionsUnavailable21, type MagickoCaptionsUnavailable21Props, type MagickoCaptionsUnavailable2Props, type MagickoCaptionsUnavailableProps, MagickoCar, MagickoCar1, type MagickoCar1Props, type MagickoCarProps, MagickoCard, MagickoCardAdd, type MagickoCardAddProps, MagickoCardCoin1, type MagickoCardCoin1Props, type MagickoCardProps, MagickoCardSlash, type MagickoCardSlashProps, MagickoCards, MagickoCards1, type MagickoCards1Props, type MagickoCardsProps, MagickoCategory, MagickoCategory2, type MagickoCategory2Props, type MagickoCategoryProps, MagickoChart, MagickoChart1, type MagickoChart1Props, MagickoChart2, MagickoChart21, type MagickoChart21Props, type MagickoChart2Props, MagickoChart3, MagickoChart31, type MagickoChart31Props, type MagickoChart3Props, MagickoChart4, type MagickoChart4Props, MagickoChart5, type MagickoChart5Props, MagickoChartFail, type MagickoChartFailProps, type MagickoChartProps, MagickoChartSquare, MagickoChartSquare1, type MagickoChartSquare1Props, MagickoChartSquare2, type MagickoChartSquare2Props, type MagickoChartSquareProps, MagickoChartSuccess, type MagickoChartSuccessProps, MagickoChatbox, type MagickoChatboxProps, MagickoCheck, type MagickoCheckProps, MagickoCirclefinger, type MagickoCirclefingerProps, MagickoClipboard, MagickoClipboardClose, type MagickoClipboardCloseProps, MagickoClipboardExport, type MagickoClipboardExportProps, MagickoClipboardImport, type MagickoClipboardImportProps, type MagickoClipboardProps, MagickoClipboardText, type MagickoClipboardTextProps, MagickoClipboardTick, type MagickoClipboardTickProps, MagickoClock, MagickoClock1, type MagickoClock1Props, MagickoClock2, type MagickoClock2Props, type MagickoClockProps, MagickoCloseCircle, type MagickoCloseCircleProps, MagickoCloseSquare, type MagickoCloseSquareProps, MagickoCloud, MagickoCloud1, type MagickoCloud1Props, MagickoCloudAdd, MagickoCloudAdd1, type MagickoCloudAdd1Props, type MagickoCloudAddProps, MagickoCloudChange, type MagickoCloudChangeProps, MagickoCloudConnection, type MagickoCloudConnectionProps, MagickoCloudDrizzle, type MagickoCloudDrizzleProps, MagickoCloudFog, type MagickoCloudFogProps, MagickoCloudLightning, type MagickoCloudLightningProps, MagickoCloudMinus, type MagickoCloudMinusProps, MagickoCloudNotif, type MagickoCloudNotifProps, MagickoCloudPlus, type MagickoCloudPlusProps, type MagickoCloudProps, MagickoCloudRemove, type MagickoCloudRemoveProps, MagickoCloudSnow, type MagickoCloudSnowProps, MagickoCloudSunny, type MagickoCloudSunnyProps, MagickoCloudWarning, type MagickoCloudWarningProps, MagickoCoin, MagickoCoin1, MagickoCoin11, type MagickoCoin11Props, type MagickoCoin1Props, type MagickoCoinProps, MagickoConversationBox, type MagickoConversationBoxProps, MagickoConvertArrow, type MagickoConvertArrowProps, MagickoCopy, type MagickoCopyProps, MagickoCopySuccess, type MagickoCopySuccessProps, MagickoCopyright, MagickoCopyright1, type MagickoCopyright1Props, MagickoCopyright2, type MagickoCopyright2Props, MagickoCopyright3, type MagickoCopyright3Props, MagickoCopyright4, type MagickoCopyright4Props, type MagickoCopyrightProps, MagickoCourthouse, type MagickoCourthouseProps, MagickoCpu, MagickoCpu1, type MagickoCpu1Props, MagickoCpuCharge, type MagickoCpuChargeProps, type MagickoCpuProps, MagickoCpuSetting, type MagickoCpuSettingProps, MagickoCreativeCommons, MagickoCreativeCommons1, type MagickoCreativeCommons1Props, type MagickoCreativeCommonsProps, MagickoDecreaseCloud, type MagickoDecreaseCloudProps, MagickoDevices, MagickoDevices1, type MagickoDevices1Props, type MagickoDevicesProps, MagickoDiagram, type MagickoDiagramProps, MagickoDirect, MagickoDirectDown, type MagickoDirectDownProps, MagickoDirectInbox, type MagickoDirectInboxProps, MagickoDirectLeft, type MagickoDirectLeftProps, MagickoDirectNormal, type MagickoDirectNormalProps, MagickoDirectNotification, type MagickoDirectNotificationProps, type MagickoDirectProps, MagickoDirectRight, type MagickoDirectRightProps, MagickoDirectSend, type MagickoDirectSendProps, MagickoDirectUp, type MagickoDirectUpProps, MagickoDirectboxDefault, type MagickoDirectboxDefaultProps, MagickoDirectboxNotif, type MagickoDirectboxNotifProps, MagickoDirectboxReceive, type MagickoDirectboxReceiveProps, MagickoDirectboxSend, type MagickoDirectboxSendProps, MagickoDiscountCircle, type MagickoDiscountCircleProps, MagickoDislike, type MagickoDislikeProps, MagickoDocument, MagickoDocument1, type MagickoDocument1Props, MagickoDocumentCloud, type MagickoDocumentCloudProps, MagickoDocumentCopy, type MagickoDocumentCopyProps, MagickoDocumentDownload, type MagickoDocumentDownloadProps, MagickoDocumentFavorite, type MagickoDocumentFavoriteProps, MagickoDocumentFilter, type MagickoDocumentFilterProps, MagickoDocumentForward, type MagickoDocumentForwardProps, MagickoDocumentLike, type MagickoDocumentLikeProps, MagickoDocumentNormal, type MagickoDocumentNormalProps, MagickoDocumentPrevious, type MagickoDocumentPreviousProps, type MagickoDocumentProps, MagickoDocumentSketch, type MagickoDocumentSketchProps, MagickoDocumentText, MagickoDocumentText2, type MagickoDocumentText2Props, type MagickoDocumentTextProps, MagickoDocumentUpload, type MagickoDocumentUploadProps, MagickoDollarCircle, type MagickoDollarCircleProps, MagickoDollarSquare, type MagickoDollarSquareProps, MagickoDownloadArrow, type MagickoDownloadArrowProps, MagickoDownloadHorizontalArrow, type MagickoDownloadHorizontalArrowProps, MagickoDriver, MagickoDriver2, type MagickoDriver2Props, type MagickoDriverProps, MagickoDriverRefresh, type MagickoDriverRefreshProps, MagickoDriving, type MagickoDrivingProps, MagickoDrop, type MagickoDropProps, MagickoDrops, type MagickoDropsProps, MagickoDuplicate, MagickoDuplicate1, type MagickoDuplicate1Props, MagickoDuplicate2, type MagickoDuplicate2Props, type MagickoDuplicateProps, MagickoEdit, MagickoEdit1, type MagickoEdit1Props, MagickoEdit2, MagickoEdit21, type MagickoEdit21Props, type MagickoEdit2Props, MagickoEdit3, type MagickoEdit3Props, MagickoEdit4, type MagickoEdit4Props, MagickoEditCloud, type MagickoEditCloudProps, type MagickoEditProps, MagickoElectricity, type MagickoElectricityProps, MagickoEmojiHappy, type MagickoEmojiHappyProps, MagickoEmojiNormal, type MagickoEmojiNormalProps, MagickoEmojiSad, type MagickoEmojiSadProps, MagickoEmptyWallet, type MagickoEmptyWalletProps, MagickoEnhancePrize, type MagickoEnhancePrizeProps, MagickoEnhanceUserAi, type MagickoEnhanceUserAiProps, MagickoEnterArrow01, type MagickoEnterArrow01Props, MagickoEnterArrow02, type MagickoEnterArrow02Props, MagickoEnterArrow03, type MagickoEnterArrow03Props, MagickoExitArrow01, type MagickoExitArrow01Props, MagickoExitArrow02, type MagickoExitArrow02Props, MagickoExitArrow03, type MagickoExitArrow03Props, MagickoExport01, type MagickoExport01Props, MagickoExportArrow01, type MagickoExportArrow01Props, MagickoExportArrow02, type MagickoExportArrow02Props, MagickoExportCircle01, type MagickoExportCircle01Props, MagickoExportCircle02, type MagickoExportCircle02Props, MagickoExposure, MagickoExposure2, type MagickoExposure2Props, type MagickoExposureProps, MagickoExternalDrive, type MagickoExternalDriveProps, MagickoEye, type MagickoEyeProps, MagickoEyeSlash, type MagickoEyeSlashProps, MagickoFavoriteChart, type MagickoFavoriteChartProps, MagickoFileCheck, type MagickoFileCheckProps, MagickoFilter, type MagickoFilterProps, MagickoFingerCross, type MagickoFingerCrossProps, MagickoFingerToshield, type MagickoFingerToshieldProps, MagickoFirstline, type MagickoFirstlineProps, MagickoFlag, type MagickoFlagProps, MagickoFlash, type MagickoFlashProps, MagickoFlashSlash, type MagickoFlashSlashProps, MagickoFlask, type MagickoFlaskProps, MagickoFlower, type MagickoFlowerProps, MagickoFolder, MagickoFolder2, type MagickoFolder2Props, MagickoFolderAdd, type MagickoFolderAddProps, MagickoFolderCloud, type MagickoFolderCloudProps, MagickoFolderConnection, type MagickoFolderConnectionProps, MagickoFolderCross, type MagickoFolderCrossProps, MagickoFolderFavorite, type MagickoFolderFavoriteProps, MagickoFolderMinus, type MagickoFolderMinusProps, MagickoFolderOpen, MagickoFolderOpenAdd, type MagickoFolderOpenAddProps, type MagickoFolderOpenProps, type MagickoFolderProps, MagickoForward, MagickoForward1, MagickoForward10Seconds, type MagickoForward10SecondsProps, MagickoForward15Seconds, type MagickoForward15SecondsProps, type MagickoForward1Props, MagickoForward5Seconds, type MagickoForward5SecondsProps, type MagickoForwardProps, MagickoGallery, MagickoGallery1, type MagickoGallery1Props, type MagickoGalleryProps, MagickoGame, type MagickoGameProps, MagickoGameboy, type MagickoGameboyProps, MagickoGasStation, type MagickoGasStationProps, MagickoGemini, MagickoGemini2, type MagickoGemini2Props, type MagickoGeminiProps, MagickoGhost, type MagickoGhostProps, MagickoGift, MagickoGift1, type MagickoGift1Props, MagickoGift2, type MagickoGift2Props, type MagickoGiftProps, MagickoGlass, MagickoGlass1, type MagickoGlass1Props, type MagickoGlassProps, MagickoGlobal, type MagickoGlobalProps, MagickoGps, type MagickoGpsProps, MagickoGpsSlash, type MagickoGpsSlashProps, MagickoGraph, type MagickoGraphProps, MagickoGrid1, type MagickoGrid1Props, MagickoGrid2, type MagickoGrid2Props, MagickoGrid3, type MagickoGrid3Props, MagickoGrid4, type MagickoGrid4Props, MagickoGrid5, type MagickoGrid5Props, MagickoGrid6, type MagickoGrid6Props, MagickoGrid7, type MagickoGrid7Props, MagickoGrid8, type MagickoGrid8Props, MagickoGrid9, type MagickoGrid9Props, MagickoGridAdd, type MagickoGridAddProps, MagickoGridEqual, type MagickoGridEqualProps, MagickoGrids4, type MagickoGrids4Props, MagickoGrinning, type MagickoGrinningProps, MagickoHandcircle, type MagickoHandcircleProps, MagickoHandtohand, type MagickoHandtohandProps, MagickoHappy, MagickoHappy1, type MagickoHappy1Props, type MagickoHappyProps, MagickoHappyemoji, type MagickoHappyemojiProps, MagickoHashtag, MagickoHashtag1, type MagickoHashtag1Props, type MagickoHashtagProps, MagickoHeadphone, type MagickoHeadphoneProps, MagickoHeadphones, type MagickoHeadphonesProps, MagickoHealth, MagickoHealth1, type MagickoHealth1Props, type MagickoHealthProps, MagickoHeart, MagickoHeart1, type MagickoHeart1Props, type MagickoHeartProps, MagickoHeartTap, type MagickoHeartTapProps, MagickoHearted, type MagickoHeartedProps, MagickoHome, MagickoHome2, MagickoHome21, type MagickoHome21Props, type MagickoHome2Props, MagickoHomeHashtag, type MagickoHomeHashtagProps, type MagickoHomeProps, MagickoHomeTrendDown, type MagickoHomeTrendDownProps, MagickoHomeTrendUp, type MagickoHomeTrendUpProps, MagickoHospital, MagickoHospital1, type MagickoHospital1Props, MagickoHospital2, type MagickoHospital2Props, type MagickoHospitalProps, MagickoHouse, MagickoHouse2, type MagickoHouse2Props, type MagickoHouseProps, MagickoImage, type MagickoImageProps, MagickoImport01, type MagickoImport01Props, MagickoImportArrow01, type MagickoImportArrow01Props, MagickoImportArrow02, type MagickoImportArrow02Props, MagickoImportCircle01, type MagickoImportCircle01Props, MagickoImportCircle02, type MagickoImportCircle02Props, MagickoInfoCircle, MagickoInfoCircle1, type MagickoInfoCircle1Props, type MagickoInfoCircleProps, MagickoInfoSquare, type MagickoInfoSquareProps, MagickoInformation, type MagickoInformationProps, MagickoJoy, MagickoJoy2, type MagickoJoy2Props, type MagickoJoyProps, MagickoKey, type MagickoKeyProps, MagickoKeyboard, MagickoKeyboard1, type MagickoKeyboard1Props, MagickoKeyboardOpen, type MagickoKeyboardOpenProps, type MagickoKeyboardProps, MagickoKissing, MagickoKissing1, type MagickoKissing1Props, type MagickoKissingProps, MagickoLamp, MagickoLamp1, type MagickoLamp1Props, MagickoLamp2, type MagickoLamp2Props, MagickoLampCharge, type MagickoLampChargeProps, MagickoLampOn, type MagickoLampOnProps, type MagickoLampProps, MagickoLampSlash, type MagickoLampSlashProps, MagickoLanguage, MagickoLanguageCircle, type MagickoLanguageCircleProps, type MagickoLanguageProps, MagickoLanguageSquare, type MagickoLanguageSquareProps, MagickoLayer, type MagickoLayerProps, MagickoLayout, type MagickoLayoutProps, MagickoLeaf2, type MagickoLeaf2Props, MagickoLeaf3, type MagickoLeaf3Props, MagickoLeafs, type MagickoLeafsProps, MagickoLeftBarGrid, type MagickoLeftBarGridProps, MagickoLeftCloud, type MagickoLeftCloudProps, MagickoLeftRightCloud, type MagickoLeftRightCloudProps, MagickoLeftSidebarGrid, type MagickoLeftSidebarGridProps, MagickoLightning, type MagickoLightningProps, MagickoLike1, type MagickoLike1Props, MagickoLikeDislike, type MagickoLikeDislikeProps, MagickoLineSpace, type MagickoLineSpaceProps, MagickoLink, MagickoLink4, type MagickoLink4Props, type MagickoLinkProps, MagickoLocation, type MagickoLocationProps, MagickoLocationSlash, type MagickoLocationSlashProps, MagickoLog, type MagickoLogProps, MagickoLogin01, type MagickoLogin01Props, MagickoLogin02, type MagickoLogin02Props, MagickoLogout01, type MagickoLogout01Props, MagickoLogout02, type MagickoLogout02Props, MagickoLoveShine, type MagickoLoveShineProps, MagickoMagicStar, type MagickoMagicStarProps, MagickoMagicpen, type MagickoMagicpenProps, MagickoMan, type MagickoManProps, MagickoMap, MagickoMap1, type MagickoMap1Props, type MagickoMapProps, MagickoMath, type MagickoMathProps, MagickoMaximize, MagickoMaximize1, type MagickoMaximize1Props, MagickoMaximize2, MagickoMaximize21, type MagickoMaximize21Props, type MagickoMaximize2Props, MagickoMaximize3, type MagickoMaximize3Props, MagickoMaximize4, type MagickoMaximize4Props, MagickoMaximizeCircle, type MagickoMaximizeCircleProps, type MagickoMaximizeProps, MagickoMaximizefinger, type MagickoMaximizefingerProps, MagickoMenu, MagickoMenu1, type MagickoMenu1Props, MagickoMenuBoard, type MagickoMenuBoardProps, type MagickoMenuProps, MagickoMessageFavorite, type MagickoMessageFavoriteProps, MagickoMessageNotif, type MagickoMessageNotifProps, MagickoMessageSearch, type MagickoMessageSearchProps, MagickoMessageText, type MagickoMessageTextProps, MagickoMicrophone, MagickoMicrophone1, type MagickoMicrophone1Props, MagickoMicrophone2, MagickoMicrophone21, MagickoMicrophone211, type MagickoMicrophone211Props, type MagickoMicrophone21Props, type MagickoMicrophone2Props, MagickoMicrophone3, type MagickoMicrophone3Props, type MagickoMicrophoneProps, MagickoMicrophoneSlash, MagickoMicrophoneSlash1, type MagickoMicrophoneSlash1Props, type MagickoMicrophoneSlashProps, MagickoMiddleFinger, type MagickoMiddleFingerProps, MagickoMinus, MagickoMinus1, type MagickoMinus1Props, MagickoMinusCircle, type MagickoMinusCircleProps, type MagickoMinusProps, MagickoMinusSquare, type MagickoMinusSquareProps, MagickoMirroringScreen, type MagickoMirroringScreenProps, MagickoMobile1, type MagickoMobile1Props, 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 };
|