magick-icons 0.1.248 → 0.1.250
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 +1069 -43
- package/index.d.ts +1069 -43
- package/index.js +926 -60
- package/index.js.map +1 -1
- package/index.mjs +872 -63
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -18306,6 +18306,96 @@ interface MoneyTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
18306
18306
|
*/
|
|
18307
18307
|
declare const MoneyTick1: React.ForwardRefExoticComponent<Omit<MoneyTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18308
18308
|
|
|
18309
|
+
/**
|
|
18310
|
+
* Props for the MoneyTime1 icon component
|
|
18311
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18312
|
+
*/
|
|
18313
|
+
interface MoneyTime1Props extends React.SVGProps<SVGSVGElement> {
|
|
18314
|
+
size?: number | string;
|
|
18315
|
+
}
|
|
18316
|
+
/**
|
|
18317
|
+
* MoneyTime1 icon component
|
|
18318
|
+
* @example
|
|
18319
|
+
* ```tsx
|
|
18320
|
+
* import { MoneyTime1 } from 'magick-icons';
|
|
18321
|
+
*
|
|
18322
|
+
* <MoneyTime1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18323
|
+
* ```
|
|
18324
|
+
*/
|
|
18325
|
+
declare const MoneyTime1: React.ForwardRefExoticComponent<Omit<MoneyTime1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18326
|
+
|
|
18327
|
+
/**
|
|
18328
|
+
* Props for the MoreCircle1 icon component
|
|
18329
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18330
|
+
*/
|
|
18331
|
+
interface MoreCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
18332
|
+
size?: number | string;
|
|
18333
|
+
}
|
|
18334
|
+
/**
|
|
18335
|
+
* MoreCircle1 icon component
|
|
18336
|
+
* @example
|
|
18337
|
+
* ```tsx
|
|
18338
|
+
* import { MoreCircle1 } from 'magick-icons';
|
|
18339
|
+
*
|
|
18340
|
+
* <MoreCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18341
|
+
* ```
|
|
18342
|
+
*/
|
|
18343
|
+
declare const MoreCircle1: React.ForwardRefExoticComponent<Omit<MoreCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18344
|
+
|
|
18345
|
+
/**
|
|
18346
|
+
* Props for the MoreSquare1 icon component
|
|
18347
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18348
|
+
*/
|
|
18349
|
+
interface MoreSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18350
|
+
size?: number | string;
|
|
18351
|
+
}
|
|
18352
|
+
/**
|
|
18353
|
+
* MoreSquare1 icon component
|
|
18354
|
+
* @example
|
|
18355
|
+
* ```tsx
|
|
18356
|
+
* import { MoreSquare1 } from 'magick-icons';
|
|
18357
|
+
*
|
|
18358
|
+
* <MoreSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18359
|
+
* ```
|
|
18360
|
+
*/
|
|
18361
|
+
declare const MoreSquare1: React.ForwardRefExoticComponent<Omit<MoreSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18362
|
+
|
|
18363
|
+
/**
|
|
18364
|
+
* Props for the MouseCircle1 icon component
|
|
18365
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18366
|
+
*/
|
|
18367
|
+
interface MouseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
18368
|
+
size?: number | string;
|
|
18369
|
+
}
|
|
18370
|
+
/**
|
|
18371
|
+
* MouseCircle1 icon component
|
|
18372
|
+
* @example
|
|
18373
|
+
* ```tsx
|
|
18374
|
+
* import { MouseCircle1 } from 'magick-icons';
|
|
18375
|
+
*
|
|
18376
|
+
* <MouseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18377
|
+
* ```
|
|
18378
|
+
*/
|
|
18379
|
+
declare const MouseCircle1: React.ForwardRefExoticComponent<Omit<MouseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18380
|
+
|
|
18381
|
+
/**
|
|
18382
|
+
* Props for the MouseSquare1 icon component
|
|
18383
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18384
|
+
*/
|
|
18385
|
+
interface MouseSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18386
|
+
size?: number | string;
|
|
18387
|
+
}
|
|
18388
|
+
/**
|
|
18389
|
+
* MouseSquare1 icon component
|
|
18390
|
+
* @example
|
|
18391
|
+
* ```tsx
|
|
18392
|
+
* import { MouseSquare1 } from 'magick-icons';
|
|
18393
|
+
*
|
|
18394
|
+
* <MouseSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18395
|
+
* ```
|
|
18396
|
+
*/
|
|
18397
|
+
declare const MouseSquare1: React.ForwardRefExoticComponent<Omit<MouseSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18398
|
+
|
|
18309
18399
|
/**
|
|
18310
18400
|
* Props for the Network icon component
|
|
18311
18401
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18324,6 +18414,24 @@ interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18324
18414
|
*/
|
|
18325
18415
|
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18326
18416
|
|
|
18417
|
+
/**
|
|
18418
|
+
* Props for the Network1 icon component
|
|
18419
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18420
|
+
*/
|
|
18421
|
+
interface Network1Props extends React.SVGProps<SVGSVGElement> {
|
|
18422
|
+
size?: number | string;
|
|
18423
|
+
}
|
|
18424
|
+
/**
|
|
18425
|
+
* Network1 icon component
|
|
18426
|
+
* @example
|
|
18427
|
+
* ```tsx
|
|
18428
|
+
* import { Network1 } from 'magick-icons';
|
|
18429
|
+
*
|
|
18430
|
+
* <Network1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18431
|
+
* ```
|
|
18432
|
+
*/
|
|
18433
|
+
declare const Network1: React.ForwardRefExoticComponent<Omit<Network1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18434
|
+
|
|
18327
18435
|
/**
|
|
18328
18436
|
* Props for the NotiDot icon component
|
|
18329
18437
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18342,6 +18450,42 @@ interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18342
18450
|
*/
|
|
18343
18451
|
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18344
18452
|
|
|
18453
|
+
/**
|
|
18454
|
+
* Props for the OmegaCircle1 icon component
|
|
18455
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18456
|
+
*/
|
|
18457
|
+
interface OmegaCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
18458
|
+
size?: number | string;
|
|
18459
|
+
}
|
|
18460
|
+
/**
|
|
18461
|
+
* OmegaCircle1 icon component
|
|
18462
|
+
* @example
|
|
18463
|
+
* ```tsx
|
|
18464
|
+
* import { OmegaCircle1 } from 'magick-icons';
|
|
18465
|
+
*
|
|
18466
|
+
* <OmegaCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18467
|
+
* ```
|
|
18468
|
+
*/
|
|
18469
|
+
declare const OmegaCircle1: React.ForwardRefExoticComponent<Omit<OmegaCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18470
|
+
|
|
18471
|
+
/**
|
|
18472
|
+
* Props for the OmegaSquare1 icon component
|
|
18473
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18474
|
+
*/
|
|
18475
|
+
interface OmegaSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18476
|
+
size?: number | string;
|
|
18477
|
+
}
|
|
18478
|
+
/**
|
|
18479
|
+
* OmegaSquare1 icon component
|
|
18480
|
+
* @example
|
|
18481
|
+
* ```tsx
|
|
18482
|
+
* import { OmegaSquare1 } from 'magick-icons';
|
|
18483
|
+
*
|
|
18484
|
+
* <OmegaSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18485
|
+
* ```
|
|
18486
|
+
*/
|
|
18487
|
+
declare const OmegaSquare1: React.ForwardRefExoticComponent<Omit<OmegaSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18488
|
+
|
|
18345
18489
|
/**
|
|
18346
18490
|
* Props for the PA icon component
|
|
18347
18491
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18360,6 +18504,24 @@ interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18360
18504
|
*/
|
|
18361
18505
|
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18362
18506
|
|
|
18507
|
+
/**
|
|
18508
|
+
* Props for the PaintBrush1 icon component
|
|
18509
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18510
|
+
*/
|
|
18511
|
+
interface PaintBrush1Props extends React.SVGProps<SVGSVGElement> {
|
|
18512
|
+
size?: number | string;
|
|
18513
|
+
}
|
|
18514
|
+
/**
|
|
18515
|
+
* PaintBrush1 icon component
|
|
18516
|
+
* @example
|
|
18517
|
+
* ```tsx
|
|
18518
|
+
* import { PaintBrush1 } from 'magick-icons';
|
|
18519
|
+
*
|
|
18520
|
+
* <PaintBrush1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18521
|
+
* ```
|
|
18522
|
+
*/
|
|
18523
|
+
declare const PaintBrush1: React.ForwardRefExoticComponent<Omit<PaintBrush1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18524
|
+
|
|
18363
18525
|
/**
|
|
18364
18526
|
* Props for the PauseSquare icon component
|
|
18365
18527
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18396,6 +18558,60 @@ interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18396
18558
|
*/
|
|
18397
18559
|
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18398
18560
|
|
|
18561
|
+
/**
|
|
18562
|
+
* Props for the PenBrush icon component
|
|
18563
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18564
|
+
*/
|
|
18565
|
+
interface PenBrushProps extends React.SVGProps<SVGSVGElement> {
|
|
18566
|
+
size?: number | string;
|
|
18567
|
+
}
|
|
18568
|
+
/**
|
|
18569
|
+
* PenBrush icon component
|
|
18570
|
+
* @example
|
|
18571
|
+
* ```tsx
|
|
18572
|
+
* import { PenBrush } from 'magick-icons';
|
|
18573
|
+
*
|
|
18574
|
+
* <PenBrush size={24} className="text-blue-500" strokeWidth={2} />
|
|
18575
|
+
* ```
|
|
18576
|
+
*/
|
|
18577
|
+
declare const PenBrush: React.ForwardRefExoticComponent<Omit<PenBrushProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18578
|
+
|
|
18579
|
+
/**
|
|
18580
|
+
* Props for the Pet1 icon component
|
|
18581
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18582
|
+
*/
|
|
18583
|
+
interface Pet1Props extends React.SVGProps<SVGSVGElement> {
|
|
18584
|
+
size?: number | string;
|
|
18585
|
+
}
|
|
18586
|
+
/**
|
|
18587
|
+
* Pet1 icon component
|
|
18588
|
+
* @example
|
|
18589
|
+
* ```tsx
|
|
18590
|
+
* import { Pet1 } from 'magick-icons';
|
|
18591
|
+
*
|
|
18592
|
+
* <Pet1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18593
|
+
* ```
|
|
18594
|
+
*/
|
|
18595
|
+
declare const Pet1: React.ForwardRefExoticComponent<Omit<Pet1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18596
|
+
|
|
18597
|
+
/**
|
|
18598
|
+
* Props for the PictureFrame1 icon component
|
|
18599
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18600
|
+
*/
|
|
18601
|
+
interface PictureFrame1Props extends React.SVGProps<SVGSVGElement> {
|
|
18602
|
+
size?: number | string;
|
|
18603
|
+
}
|
|
18604
|
+
/**
|
|
18605
|
+
* PictureFrame1 icon component
|
|
18606
|
+
* @example
|
|
18607
|
+
* ```tsx
|
|
18608
|
+
* import { PictureFrame1 } from 'magick-icons';
|
|
18609
|
+
*
|
|
18610
|
+
* <PictureFrame1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18611
|
+
* ```
|
|
18612
|
+
*/
|
|
18613
|
+
declare const PictureFrame1: React.ForwardRefExoticComponent<Omit<PictureFrame1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18614
|
+
|
|
18399
18615
|
/**
|
|
18400
18616
|
* Props for the PlayFilled icon component
|
|
18401
18617
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -18415,130 +18631,940 @@ interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18415
18631
|
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18416
18632
|
|
|
18417
18633
|
/**
|
|
18418
|
-
* Props for the
|
|
18634
|
+
* Props for the Plesk1 icon component
|
|
18419
18635
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18420
18636
|
*/
|
|
18421
|
-
interface
|
|
18637
|
+
interface Plesk1Props extends React.SVGProps<SVGSVGElement> {
|
|
18422
18638
|
size?: number | string;
|
|
18423
18639
|
}
|
|
18424
18640
|
/**
|
|
18425
|
-
*
|
|
18641
|
+
* Plesk1 icon component
|
|
18426
18642
|
* @example
|
|
18427
18643
|
* ```tsx
|
|
18428
|
-
* import {
|
|
18644
|
+
* import { Plesk1 } from 'magick-icons';
|
|
18429
18645
|
*
|
|
18430
|
-
* <
|
|
18646
|
+
* <Plesk1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18431
18647
|
* ```
|
|
18432
18648
|
*/
|
|
18433
|
-
declare const
|
|
18649
|
+
declare const Plesk1: React.ForwardRefExoticComponent<Omit<Plesk1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18434
18650
|
|
|
18435
18651
|
/**
|
|
18436
|
-
* Props for the
|
|
18652
|
+
* Props for the Radar1 icon component
|
|
18437
18653
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18438
18654
|
*/
|
|
18439
|
-
interface
|
|
18655
|
+
interface Radar1Props extends React.SVGProps<SVGSVGElement> {
|
|
18440
18656
|
size?: number | string;
|
|
18441
18657
|
}
|
|
18442
18658
|
/**
|
|
18443
|
-
*
|
|
18659
|
+
* Radar1 icon component
|
|
18444
18660
|
* @example
|
|
18445
18661
|
* ```tsx
|
|
18446
|
-
* import {
|
|
18662
|
+
* import { Radar1 } from 'magick-icons';
|
|
18447
18663
|
*
|
|
18448
|
-
* <
|
|
18664
|
+
* <Radar1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18449
18665
|
* ```
|
|
18450
18666
|
*/
|
|
18451
|
-
declare const
|
|
18667
|
+
declare const Radar1: React.ForwardRefExoticComponent<Omit<Radar1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18452
18668
|
|
|
18453
18669
|
/**
|
|
18454
|
-
* Props for the
|
|
18670
|
+
* Props for the Radar11 icon component
|
|
18455
18671
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18456
18672
|
*/
|
|
18457
|
-
interface
|
|
18673
|
+
interface Radar11Props extends React.SVGProps<SVGSVGElement> {
|
|
18458
18674
|
size?: number | string;
|
|
18459
18675
|
}
|
|
18460
18676
|
/**
|
|
18461
|
-
*
|
|
18677
|
+
* Radar11 icon component
|
|
18462
18678
|
* @example
|
|
18463
18679
|
* ```tsx
|
|
18464
|
-
* import {
|
|
18680
|
+
* import { Radar11 } from 'magick-icons';
|
|
18465
18681
|
*
|
|
18466
|
-
* <
|
|
18682
|
+
* <Radar11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18467
18683
|
* ```
|
|
18468
18684
|
*/
|
|
18469
|
-
declare const
|
|
18685
|
+
declare const Radar11: React.ForwardRefExoticComponent<Omit<Radar11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18470
18686
|
|
|
18471
18687
|
/**
|
|
18472
|
-
* Props for the
|
|
18688
|
+
* Props for the Radar21 icon component
|
|
18473
18689
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18474
18690
|
*/
|
|
18475
|
-
interface
|
|
18691
|
+
interface Radar21Props extends React.SVGProps<SVGSVGElement> {
|
|
18476
18692
|
size?: number | string;
|
|
18477
18693
|
}
|
|
18478
18694
|
/**
|
|
18479
|
-
*
|
|
18695
|
+
* Radar21 icon component
|
|
18480
18696
|
* @example
|
|
18481
18697
|
* ```tsx
|
|
18482
|
-
* import {
|
|
18698
|
+
* import { Radar21 } from 'magick-icons';
|
|
18483
18699
|
*
|
|
18484
|
-
* <
|
|
18700
|
+
* <Radar21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18485
18701
|
* ```
|
|
18486
18702
|
*/
|
|
18487
|
-
declare const
|
|
18703
|
+
declare const Radar21: React.ForwardRefExoticComponent<Omit<Radar21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18488
18704
|
|
|
18489
18705
|
/**
|
|
18490
|
-
* Props for the
|
|
18706
|
+
* Props for the Ranking1 icon component
|
|
18491
18707
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18492
18708
|
*/
|
|
18493
|
-
interface
|
|
18709
|
+
interface Ranking1Props extends React.SVGProps<SVGSVGElement> {
|
|
18494
18710
|
size?: number | string;
|
|
18495
18711
|
}
|
|
18496
18712
|
/**
|
|
18497
|
-
*
|
|
18713
|
+
* Ranking1 icon component
|
|
18498
18714
|
* @example
|
|
18499
18715
|
* ```tsx
|
|
18500
|
-
* import {
|
|
18716
|
+
* import { Ranking1 } from 'magick-icons';
|
|
18501
18717
|
*
|
|
18502
|
-
* <
|
|
18718
|
+
* <Ranking1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18503
18719
|
* ```
|
|
18504
18720
|
*/
|
|
18505
|
-
declare const
|
|
18721
|
+
declare const Ranking1: React.ForwardRefExoticComponent<Omit<Ranking1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18506
18722
|
|
|
18507
18723
|
/**
|
|
18508
|
-
* Props for the
|
|
18724
|
+
* Props for the Ranking11 icon component
|
|
18509
18725
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18510
18726
|
*/
|
|
18511
|
-
interface
|
|
18727
|
+
interface Ranking11Props extends React.SVGProps<SVGSVGElement> {
|
|
18512
18728
|
size?: number | string;
|
|
18513
18729
|
}
|
|
18514
18730
|
/**
|
|
18515
|
-
*
|
|
18731
|
+
* Ranking11 icon component
|
|
18516
18732
|
* @example
|
|
18517
18733
|
* ```tsx
|
|
18518
|
-
* import {
|
|
18734
|
+
* import { Ranking11 } from 'magick-icons';
|
|
18519
18735
|
*
|
|
18520
|
-
* <
|
|
18736
|
+
* <Ranking11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18521
18737
|
* ```
|
|
18522
18738
|
*/
|
|
18523
|
-
declare const
|
|
18739
|
+
declare const Ranking11: React.ForwardRefExoticComponent<Omit<Ranking11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18524
18740
|
|
|
18525
18741
|
/**
|
|
18526
|
-
* Props for the
|
|
18742
|
+
* Props for the Reserve1 icon component
|
|
18527
18743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18528
18744
|
*/
|
|
18529
|
-
interface
|
|
18745
|
+
interface Reserve1Props extends React.SVGProps<SVGSVGElement> {
|
|
18530
18746
|
size?: number | string;
|
|
18531
18747
|
}
|
|
18532
18748
|
/**
|
|
18533
|
-
*
|
|
18749
|
+
* Reserve1 icon component
|
|
18534
18750
|
* @example
|
|
18535
18751
|
* ```tsx
|
|
18536
|
-
* import {
|
|
18752
|
+
* import { Reserve1 } from 'magick-icons';
|
|
18537
18753
|
*
|
|
18538
|
-
* <
|
|
18754
|
+
* <Reserve1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18539
18755
|
* ```
|
|
18540
18756
|
*/
|
|
18541
|
-
declare const
|
|
18757
|
+
declare const Reserve1: React.ForwardRefExoticComponent<Omit<Reserve1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18758
|
+
|
|
18759
|
+
/**
|
|
18760
|
+
* Props for the RouteSquare1 icon component
|
|
18761
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18762
|
+
*/
|
|
18763
|
+
interface RouteSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
18764
|
+
size?: number | string;
|
|
18765
|
+
}
|
|
18766
|
+
/**
|
|
18767
|
+
* RouteSquare1 icon component
|
|
18768
|
+
* @example
|
|
18769
|
+
* ```tsx
|
|
18770
|
+
* import { RouteSquare1 } from 'magick-icons';
|
|
18771
|
+
*
|
|
18772
|
+
* <RouteSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18773
|
+
* ```
|
|
18774
|
+
*/
|
|
18775
|
+
declare const RouteSquare1: React.ForwardRefExoticComponent<Omit<RouteSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18776
|
+
|
|
18777
|
+
/**
|
|
18778
|
+
* Props for the Routing1 icon component
|
|
18779
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18780
|
+
*/
|
|
18781
|
+
interface Routing1Props extends React.SVGProps<SVGSVGElement> {
|
|
18782
|
+
size?: number | string;
|
|
18783
|
+
}
|
|
18784
|
+
/**
|
|
18785
|
+
* Routing1 icon component
|
|
18786
|
+
* @example
|
|
18787
|
+
* ```tsx
|
|
18788
|
+
* import { Routing1 } from 'magick-icons';
|
|
18789
|
+
*
|
|
18790
|
+
* <Routing1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18791
|
+
* ```
|
|
18792
|
+
*/
|
|
18793
|
+
declare const Routing1: React.ForwardRefExoticComponent<Omit<Routing1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18794
|
+
|
|
18795
|
+
/**
|
|
18796
|
+
* Props for the Routing21 icon component
|
|
18797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18798
|
+
*/
|
|
18799
|
+
interface Routing21Props extends React.SVGProps<SVGSVGElement> {
|
|
18800
|
+
size?: number | string;
|
|
18801
|
+
}
|
|
18802
|
+
/**
|
|
18803
|
+
* Routing21 icon component
|
|
18804
|
+
* @example
|
|
18805
|
+
* ```tsx
|
|
18806
|
+
* import { Routing21 } from 'magick-icons';
|
|
18807
|
+
*
|
|
18808
|
+
* <Routing21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18809
|
+
* ```
|
|
18810
|
+
*/
|
|
18811
|
+
declare const Routing21: React.ForwardRefExoticComponent<Omit<Routing21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18812
|
+
|
|
18813
|
+
/**
|
|
18814
|
+
* Props for the SafeHome1 icon component
|
|
18815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18816
|
+
*/
|
|
18817
|
+
interface SafeHome1Props extends React.SVGProps<SVGSVGElement> {
|
|
18818
|
+
size?: number | string;
|
|
18819
|
+
}
|
|
18820
|
+
/**
|
|
18821
|
+
* SafeHome1 icon component
|
|
18822
|
+
* @example
|
|
18823
|
+
* ```tsx
|
|
18824
|
+
* import { SafeHome1 } from 'magick-icons';
|
|
18825
|
+
*
|
|
18826
|
+
* <SafeHome1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18827
|
+
* ```
|
|
18828
|
+
*/
|
|
18829
|
+
declare const SafeHome1: React.ForwardRefExoticComponent<Omit<SafeHome1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18830
|
+
|
|
18831
|
+
/**
|
|
18832
|
+
* Props for the SecurityCard1 icon component
|
|
18833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18834
|
+
*/
|
|
18835
|
+
interface SecurityCard1Props extends React.SVGProps<SVGSVGElement> {
|
|
18836
|
+
size?: number | string;
|
|
18837
|
+
}
|
|
18838
|
+
/**
|
|
18839
|
+
* SecurityCard1 icon component
|
|
18840
|
+
* @example
|
|
18841
|
+
* ```tsx
|
|
18842
|
+
* import { SecurityCard1 } from 'magick-icons';
|
|
18843
|
+
*
|
|
18844
|
+
* <SecurityCard1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18845
|
+
* ```
|
|
18846
|
+
*/
|
|
18847
|
+
declare const SecurityCard1: React.ForwardRefExoticComponent<Omit<SecurityCard1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18848
|
+
|
|
18849
|
+
/**
|
|
18850
|
+
* Props for the Share1 icon component
|
|
18851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18852
|
+
*/
|
|
18853
|
+
interface Share1Props extends React.SVGProps<SVGSVGElement> {
|
|
18854
|
+
size?: number | string;
|
|
18855
|
+
}
|
|
18856
|
+
/**
|
|
18857
|
+
* Share1 icon component
|
|
18858
|
+
* @example
|
|
18859
|
+
* ```tsx
|
|
18860
|
+
* import { Share1 } from 'magick-icons';
|
|
18861
|
+
*
|
|
18862
|
+
* <Share1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18863
|
+
* ```
|
|
18864
|
+
*/
|
|
18865
|
+
declare const Share1: React.ForwardRefExoticComponent<Omit<Share1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18866
|
+
|
|
18867
|
+
/**
|
|
18868
|
+
* Props for the Signature icon component
|
|
18869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18870
|
+
*/
|
|
18871
|
+
interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
18872
|
+
size?: number | string;
|
|
18873
|
+
}
|
|
18874
|
+
/**
|
|
18875
|
+
* Signature icon component
|
|
18876
|
+
* @example
|
|
18877
|
+
* ```tsx
|
|
18878
|
+
* import { Signature } from 'magick-icons';
|
|
18879
|
+
*
|
|
18880
|
+
* <Signature size={24} className="text-blue-500" strokeWidth={2} />
|
|
18881
|
+
* ```
|
|
18882
|
+
*/
|
|
18883
|
+
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18884
|
+
|
|
18885
|
+
/**
|
|
18886
|
+
* Props for the Signpost1 icon component
|
|
18887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18888
|
+
*/
|
|
18889
|
+
interface Signpost1Props extends React.SVGProps<SVGSVGElement> {
|
|
18890
|
+
size?: number | string;
|
|
18891
|
+
}
|
|
18892
|
+
/**
|
|
18893
|
+
* Signpost1 icon component
|
|
18894
|
+
* @example
|
|
18895
|
+
* ```tsx
|
|
18896
|
+
* import { Signpost1 } from 'magick-icons';
|
|
18897
|
+
*
|
|
18898
|
+
* <Signpost1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18899
|
+
* ```
|
|
18900
|
+
*/
|
|
18901
|
+
declare const Signpost1: React.ForwardRefExoticComponent<Omit<Signpost1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18902
|
+
|
|
18903
|
+
/**
|
|
18904
|
+
* Props for the Slider1 icon component
|
|
18905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18906
|
+
*/
|
|
18907
|
+
interface Slider1Props extends React.SVGProps<SVGSVGElement> {
|
|
18908
|
+
size?: number | string;
|
|
18909
|
+
}
|
|
18910
|
+
/**
|
|
18911
|
+
* Slider1 icon component
|
|
18912
|
+
* @example
|
|
18913
|
+
* ```tsx
|
|
18914
|
+
* import { Slider1 } from 'magick-icons';
|
|
18915
|
+
*
|
|
18916
|
+
* <Slider1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18917
|
+
* ```
|
|
18918
|
+
*/
|
|
18919
|
+
declare const Slider1: React.ForwardRefExoticComponent<Omit<Slider1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18920
|
+
|
|
18921
|
+
/**
|
|
18922
|
+
* Props for the SliderHorizontal1 icon component
|
|
18923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18924
|
+
*/
|
|
18925
|
+
interface SliderHorizontal1Props extends React.SVGProps<SVGSVGElement> {
|
|
18926
|
+
size?: number | string;
|
|
18927
|
+
}
|
|
18928
|
+
/**
|
|
18929
|
+
* SliderHorizontal1 icon component
|
|
18930
|
+
* @example
|
|
18931
|
+
* ```tsx
|
|
18932
|
+
* import { SliderHorizontal1 } from 'magick-icons';
|
|
18933
|
+
*
|
|
18934
|
+
* <SliderHorizontal1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18935
|
+
* ```
|
|
18936
|
+
*/
|
|
18937
|
+
declare const SliderHorizontal1: React.ForwardRefExoticComponent<Omit<SliderHorizontal1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18938
|
+
|
|
18939
|
+
/**
|
|
18940
|
+
* Props for the SliderHorizontal11 icon component
|
|
18941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18942
|
+
*/
|
|
18943
|
+
interface SliderHorizontal11Props extends React.SVGProps<SVGSVGElement> {
|
|
18944
|
+
size?: number | string;
|
|
18945
|
+
}
|
|
18946
|
+
/**
|
|
18947
|
+
* SliderHorizontal11 icon component
|
|
18948
|
+
* @example
|
|
18949
|
+
* ```tsx
|
|
18950
|
+
* import { SliderHorizontal11 } from 'magick-icons';
|
|
18951
|
+
*
|
|
18952
|
+
* <SliderHorizontal11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18953
|
+
* ```
|
|
18954
|
+
*/
|
|
18955
|
+
declare const SliderHorizontal11: React.ForwardRefExoticComponent<Omit<SliderHorizontal11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18956
|
+
|
|
18957
|
+
/**
|
|
18958
|
+
* Props for the SliderVertical1 icon component
|
|
18959
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18960
|
+
*/
|
|
18961
|
+
interface SliderVertical1Props extends React.SVGProps<SVGSVGElement> {
|
|
18962
|
+
size?: number | string;
|
|
18963
|
+
}
|
|
18964
|
+
/**
|
|
18965
|
+
* SliderVertical1 icon component
|
|
18966
|
+
* @example
|
|
18967
|
+
* ```tsx
|
|
18968
|
+
* import { SliderVertical1 } from 'magick-icons';
|
|
18969
|
+
*
|
|
18970
|
+
* <SliderVertical1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18971
|
+
* ```
|
|
18972
|
+
*/
|
|
18973
|
+
declare const SliderVertical1: React.ForwardRefExoticComponent<Omit<SliderVertical1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18974
|
+
|
|
18975
|
+
/**
|
|
18976
|
+
* Props for the SliderVertical11 icon component
|
|
18977
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18978
|
+
*/
|
|
18979
|
+
interface SliderVertical11Props extends React.SVGProps<SVGSVGElement> {
|
|
18980
|
+
size?: number | string;
|
|
18981
|
+
}
|
|
18982
|
+
/**
|
|
18983
|
+
* SliderVertical11 icon component
|
|
18984
|
+
* @example
|
|
18985
|
+
* ```tsx
|
|
18986
|
+
* import { SliderVertical11 } from 'magick-icons';
|
|
18987
|
+
*
|
|
18988
|
+
* <SliderVertical11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
18989
|
+
* ```
|
|
18990
|
+
*/
|
|
18991
|
+
declare const SliderVertical11: React.ForwardRefExoticComponent<Omit<SliderVertical11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18992
|
+
|
|
18993
|
+
/**
|
|
18994
|
+
* Props for the SmartHome1 icon component
|
|
18995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
18996
|
+
*/
|
|
18997
|
+
interface SmartHome1Props extends React.SVGProps<SVGSVGElement> {
|
|
18998
|
+
size?: number | string;
|
|
18999
|
+
}
|
|
19000
|
+
/**
|
|
19001
|
+
* SmartHome1 icon component
|
|
19002
|
+
* @example
|
|
19003
|
+
* ```tsx
|
|
19004
|
+
* import { SmartHome1 } from 'magick-icons';
|
|
19005
|
+
*
|
|
19006
|
+
* <SmartHome1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19007
|
+
* ```
|
|
19008
|
+
*/
|
|
19009
|
+
declare const SmartHome1: React.ForwardRefExoticComponent<Omit<SmartHome1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19010
|
+
|
|
19011
|
+
/**
|
|
19012
|
+
* Props for the SmsEdit1 icon component
|
|
19013
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19014
|
+
*/
|
|
19015
|
+
interface SmsEdit1Props extends React.SVGProps<SVGSVGElement> {
|
|
19016
|
+
size?: number | string;
|
|
19017
|
+
}
|
|
19018
|
+
/**
|
|
19019
|
+
* SmsEdit1 icon component
|
|
19020
|
+
* @example
|
|
19021
|
+
* ```tsx
|
|
19022
|
+
* import { SmsEdit1 } from 'magick-icons';
|
|
19023
|
+
*
|
|
19024
|
+
* <SmsEdit1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19025
|
+
* ```
|
|
19026
|
+
*/
|
|
19027
|
+
declare const SmsEdit1: React.ForwardRefExoticComponent<Omit<SmsEdit1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19028
|
+
|
|
19029
|
+
/**
|
|
19030
|
+
* Props for the SmsSearch1 icon component
|
|
19031
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19032
|
+
*/
|
|
19033
|
+
interface SmsSearch1Props extends React.SVGProps<SVGSVGElement> {
|
|
19034
|
+
size?: number | string;
|
|
19035
|
+
}
|
|
19036
|
+
/**
|
|
19037
|
+
* SmsSearch1 icon component
|
|
19038
|
+
* @example
|
|
19039
|
+
* ```tsx
|
|
19040
|
+
* import { SmsSearch1 } from 'magick-icons';
|
|
19041
|
+
*
|
|
19042
|
+
* <SmsSearch1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19043
|
+
* ```
|
|
19044
|
+
*/
|
|
19045
|
+
declare const SmsSearch1: React.ForwardRefExoticComponent<Omit<SmsSearch1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19046
|
+
|
|
19047
|
+
/**
|
|
19048
|
+
* Props for the SmsStar1 icon component
|
|
19049
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19050
|
+
*/
|
|
19051
|
+
interface SmsStar1Props extends React.SVGProps<SVGSVGElement> {
|
|
19052
|
+
size?: number | string;
|
|
19053
|
+
}
|
|
19054
|
+
/**
|
|
19055
|
+
* SmsStar1 icon component
|
|
19056
|
+
* @example
|
|
19057
|
+
* ```tsx
|
|
19058
|
+
* import { SmsStar1 } from 'magick-icons';
|
|
19059
|
+
*
|
|
19060
|
+
* <SmsStar1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19061
|
+
* ```
|
|
19062
|
+
*/
|
|
19063
|
+
declare const SmsStar1: React.ForwardRefExoticComponent<Omit<SmsStar1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19064
|
+
|
|
19065
|
+
/**
|
|
19066
|
+
* Props for the SmsTracking1 icon component
|
|
19067
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19068
|
+
*/
|
|
19069
|
+
interface SmsTracking1Props extends React.SVGProps<SVGSVGElement> {
|
|
19070
|
+
size?: number | string;
|
|
19071
|
+
}
|
|
19072
|
+
/**
|
|
19073
|
+
* SmsTracking1 icon component
|
|
19074
|
+
* @example
|
|
19075
|
+
* ```tsx
|
|
19076
|
+
* import { SmsTracking1 } from 'magick-icons';
|
|
19077
|
+
*
|
|
19078
|
+
* <SmsTracking1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19079
|
+
* ```
|
|
19080
|
+
*/
|
|
19081
|
+
declare const SmsTracking1: React.ForwardRefExoticComponent<Omit<SmsTracking1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19082
|
+
|
|
19083
|
+
/**
|
|
19084
|
+
* Props for the Sound1 icon component
|
|
19085
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19086
|
+
*/
|
|
19087
|
+
interface Sound1Props extends React.SVGProps<SVGSVGElement> {
|
|
19088
|
+
size?: number | string;
|
|
19089
|
+
}
|
|
19090
|
+
/**
|
|
19091
|
+
* Sound1 icon component
|
|
19092
|
+
* @example
|
|
19093
|
+
* ```tsx
|
|
19094
|
+
* import { Sound1 } from 'magick-icons';
|
|
19095
|
+
*
|
|
19096
|
+
* <Sound1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19097
|
+
* ```
|
|
19098
|
+
*/
|
|
19099
|
+
declare const Sound1: React.ForwardRefExoticComponent<Omit<Sound1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19100
|
+
|
|
19101
|
+
/**
|
|
19102
|
+
* Props for the Speedometer1 icon component
|
|
19103
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19104
|
+
*/
|
|
19105
|
+
interface Speedometer1Props extends React.SVGProps<SVGSVGElement> {
|
|
19106
|
+
size?: number | string;
|
|
19107
|
+
}
|
|
19108
|
+
/**
|
|
19109
|
+
* Speedometer1 icon component
|
|
19110
|
+
* @example
|
|
19111
|
+
* ```tsx
|
|
19112
|
+
* import { Speedometer1 } from 'magick-icons';
|
|
19113
|
+
*
|
|
19114
|
+
* <Speedometer1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19115
|
+
* ```
|
|
19116
|
+
*/
|
|
19117
|
+
declare const Speedometer1: React.ForwardRefExoticComponent<Omit<Speedometer1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19118
|
+
|
|
19119
|
+
/**
|
|
19120
|
+
* Props for the Speedometer11 icon component
|
|
19121
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19122
|
+
*/
|
|
19123
|
+
interface Speedometer11Props extends React.SVGProps<SVGSVGElement> {
|
|
19124
|
+
size?: number | string;
|
|
19125
|
+
}
|
|
19126
|
+
/**
|
|
19127
|
+
* Speedometer11 icon component
|
|
19128
|
+
* @example
|
|
19129
|
+
* ```tsx
|
|
19130
|
+
* import { Speedometer11 } from 'magick-icons';
|
|
19131
|
+
*
|
|
19132
|
+
* <Speedometer11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19133
|
+
* ```
|
|
19134
|
+
*/
|
|
19135
|
+
declare const Speedometer11: React.ForwardRefExoticComponent<Omit<Speedometer11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19136
|
+
|
|
19137
|
+
/**
|
|
19138
|
+
* Props for the SperateDot icon component
|
|
19139
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19140
|
+
*/
|
|
19141
|
+
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
19142
|
+
size?: number | string;
|
|
19143
|
+
}
|
|
19144
|
+
/**
|
|
19145
|
+
* SperateDot icon component
|
|
19146
|
+
* @example
|
|
19147
|
+
* ```tsx
|
|
19148
|
+
* import { SperateDot } from 'magick-icons';
|
|
19149
|
+
*
|
|
19150
|
+
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
19151
|
+
* ```
|
|
19152
|
+
*/
|
|
19153
|
+
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19154
|
+
|
|
19155
|
+
/**
|
|
19156
|
+
* Props for the SquarePen1 icon component
|
|
19157
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19158
|
+
*/
|
|
19159
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
19160
|
+
size?: number | string;
|
|
19161
|
+
}
|
|
19162
|
+
/**
|
|
19163
|
+
* SquarePen1 icon component
|
|
19164
|
+
* @example
|
|
19165
|
+
* ```tsx
|
|
19166
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
19167
|
+
*
|
|
19168
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19169
|
+
* ```
|
|
19170
|
+
*/
|
|
19171
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19172
|
+
|
|
19173
|
+
/**
|
|
19174
|
+
* Props for the StarTopology1 icon component
|
|
19175
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19176
|
+
*/
|
|
19177
|
+
interface StarTopology1Props extends React.SVGProps<SVGSVGElement> {
|
|
19178
|
+
size?: number | string;
|
|
19179
|
+
}
|
|
19180
|
+
/**
|
|
19181
|
+
* StarTopology1 icon component
|
|
19182
|
+
* @example
|
|
19183
|
+
* ```tsx
|
|
19184
|
+
* import { StarTopology1 } from 'magick-icons';
|
|
19185
|
+
*
|
|
19186
|
+
* <StarTopology1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19187
|
+
* ```
|
|
19188
|
+
*/
|
|
19189
|
+
declare const StarTopology1: React.ForwardRefExoticComponent<Omit<StarTopology1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19190
|
+
|
|
19191
|
+
/**
|
|
19192
|
+
* Props for the Status1 icon component
|
|
19193
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19194
|
+
*/
|
|
19195
|
+
interface Status1Props extends React.SVGProps<SVGSVGElement> {
|
|
19196
|
+
size?: number | string;
|
|
19197
|
+
}
|
|
19198
|
+
/**
|
|
19199
|
+
* Status1 icon component
|
|
19200
|
+
* @example
|
|
19201
|
+
* ```tsx
|
|
19202
|
+
* import { Status1 } from 'magick-icons';
|
|
19203
|
+
*
|
|
19204
|
+
* <Status1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19205
|
+
* ```
|
|
19206
|
+
*/
|
|
19207
|
+
declare const Status1: React.ForwardRefExoticComponent<Omit<Status1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19208
|
+
|
|
19209
|
+
/**
|
|
19210
|
+
* Props for the Status11 icon component
|
|
19211
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19212
|
+
*/
|
|
19213
|
+
interface Status11Props extends React.SVGProps<SVGSVGElement> {
|
|
19214
|
+
size?: number | string;
|
|
19215
|
+
}
|
|
19216
|
+
/**
|
|
19217
|
+
* Status11 icon component
|
|
19218
|
+
* @example
|
|
19219
|
+
* ```tsx
|
|
19220
|
+
* import { Status11 } from 'magick-icons';
|
|
19221
|
+
*
|
|
19222
|
+
* <Status11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19223
|
+
* ```
|
|
19224
|
+
*/
|
|
19225
|
+
declare const Status11: React.ForwardRefExoticComponent<Omit<Status11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19226
|
+
|
|
19227
|
+
/**
|
|
19228
|
+
* Props for the Strikethrough icon component
|
|
19229
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19230
|
+
*/
|
|
19231
|
+
interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
19232
|
+
size?: number | string;
|
|
19233
|
+
}
|
|
19234
|
+
/**
|
|
19235
|
+
* Strikethrough icon component
|
|
19236
|
+
* @example
|
|
19237
|
+
* ```tsx
|
|
19238
|
+
* import { Strikethrough } from 'magick-icons';
|
|
19239
|
+
*
|
|
19240
|
+
* <Strikethrough size={24} className="text-blue-500" strokeWidth={2} />
|
|
19241
|
+
* ```
|
|
19242
|
+
*/
|
|
19243
|
+
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19244
|
+
|
|
19245
|
+
/**
|
|
19246
|
+
* Props for the Strongbox1 icon component
|
|
19247
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19248
|
+
*/
|
|
19249
|
+
interface Strongbox1Props extends React.SVGProps<SVGSVGElement> {
|
|
19250
|
+
size?: number | string;
|
|
19251
|
+
}
|
|
19252
|
+
/**
|
|
19253
|
+
* Strongbox1 icon component
|
|
19254
|
+
* @example
|
|
19255
|
+
* ```tsx
|
|
19256
|
+
* import { Strongbox1 } from 'magick-icons';
|
|
19257
|
+
*
|
|
19258
|
+
* <Strongbox1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19259
|
+
* ```
|
|
19260
|
+
*/
|
|
19261
|
+
declare const Strongbox1: React.ForwardRefExoticComponent<Omit<Strongbox1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19262
|
+
|
|
19263
|
+
/**
|
|
19264
|
+
* Props for the Strongbox11 icon component
|
|
19265
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19266
|
+
*/
|
|
19267
|
+
interface Strongbox11Props extends React.SVGProps<SVGSVGElement> {
|
|
19268
|
+
size?: number | string;
|
|
19269
|
+
}
|
|
19270
|
+
/**
|
|
19271
|
+
* Strongbox11 icon component
|
|
19272
|
+
* @example
|
|
19273
|
+
* ```tsx
|
|
19274
|
+
* import { Strongbox11 } from 'magick-icons';
|
|
19275
|
+
*
|
|
19276
|
+
* <Strongbox11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19277
|
+
* ```
|
|
19278
|
+
*/
|
|
19279
|
+
declare const Strongbox11: React.ForwardRefExoticComponent<Omit<Strongbox11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19280
|
+
|
|
19281
|
+
/**
|
|
19282
|
+
* Props for the Strongbox21 icon component
|
|
19283
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19284
|
+
*/
|
|
19285
|
+
interface Strongbox21Props extends React.SVGProps<SVGSVGElement> {
|
|
19286
|
+
size?: number | string;
|
|
19287
|
+
}
|
|
19288
|
+
/**
|
|
19289
|
+
* Strongbox21 icon component
|
|
19290
|
+
* @example
|
|
19291
|
+
* ```tsx
|
|
19292
|
+
* import { Strongbox21 } from 'magick-icons';
|
|
19293
|
+
*
|
|
19294
|
+
* <Strongbox21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19295
|
+
* ```
|
|
19296
|
+
*/
|
|
19297
|
+
declare const Strongbox21: React.ForwardRefExoticComponent<Omit<Strongbox21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19298
|
+
|
|
19299
|
+
/**
|
|
19300
|
+
* Props for the TagRight1 icon component
|
|
19301
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19302
|
+
*/
|
|
19303
|
+
interface TagRight1Props extends React.SVGProps<SVGSVGElement> {
|
|
19304
|
+
size?: number | string;
|
|
19305
|
+
}
|
|
19306
|
+
/**
|
|
19307
|
+
* TagRight1 icon component
|
|
19308
|
+
* @example
|
|
19309
|
+
* ```tsx
|
|
19310
|
+
* import { TagRight1 } from 'magick-icons';
|
|
19311
|
+
*
|
|
19312
|
+
* <TagRight1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19313
|
+
* ```
|
|
19314
|
+
*/
|
|
19315
|
+
declare const TagRight1: React.ForwardRefExoticComponent<Omit<TagRight1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19316
|
+
|
|
19317
|
+
/**
|
|
19318
|
+
* Props for the Tasks icon component
|
|
19319
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19320
|
+
*/
|
|
19321
|
+
interface TasksProps extends React.SVGProps<SVGSVGElement> {
|
|
19322
|
+
size?: number | string;
|
|
19323
|
+
}
|
|
19324
|
+
/**
|
|
19325
|
+
* Tasks icon component
|
|
19326
|
+
* @example
|
|
19327
|
+
* ```tsx
|
|
19328
|
+
* import { Tasks } from 'magick-icons';
|
|
19329
|
+
*
|
|
19330
|
+
* <Tasks size={24} className="text-blue-500" strokeWidth={2} />
|
|
19331
|
+
* ```
|
|
19332
|
+
*/
|
|
19333
|
+
declare const Tasks: React.ForwardRefExoticComponent<Omit<TasksProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19334
|
+
|
|
19335
|
+
/**
|
|
19336
|
+
* Props for the Trash icon component
|
|
19337
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19338
|
+
*/
|
|
19339
|
+
interface TrashProps extends React.SVGProps<SVGSVGElement> {
|
|
19340
|
+
size?: number | string;
|
|
19341
|
+
}
|
|
19342
|
+
/**
|
|
19343
|
+
* Trash icon component
|
|
19344
|
+
* @example
|
|
19345
|
+
* ```tsx
|
|
19346
|
+
* import { Trash } from 'magick-icons';
|
|
19347
|
+
*
|
|
19348
|
+
* <Trash size={24} className="text-blue-500" strokeWidth={2} />
|
|
19349
|
+
* ```
|
|
19350
|
+
*/
|
|
19351
|
+
declare const Trash: React.ForwardRefExoticComponent<Omit<TrashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19352
|
+
|
|
19353
|
+
/**
|
|
19354
|
+
* Props for the TrashSquare1 icon component
|
|
19355
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19356
|
+
*/
|
|
19357
|
+
interface TrashSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
19358
|
+
size?: number | string;
|
|
19359
|
+
}
|
|
19360
|
+
/**
|
|
19361
|
+
* TrashSquare1 icon component
|
|
19362
|
+
* @example
|
|
19363
|
+
* ```tsx
|
|
19364
|
+
* import { TrashSquare1 } from 'magick-icons';
|
|
19365
|
+
*
|
|
19366
|
+
* <TrashSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19367
|
+
* ```
|
|
19368
|
+
*/
|
|
19369
|
+
declare const TrashSquare1: React.ForwardRefExoticComponent<Omit<TrashSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19370
|
+
|
|
19371
|
+
/**
|
|
19372
|
+
* Props for the Tree1 icon component
|
|
19373
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19374
|
+
*/
|
|
19375
|
+
interface Tree1Props extends React.SVGProps<SVGSVGElement> {
|
|
19376
|
+
size?: number | string;
|
|
19377
|
+
}
|
|
19378
|
+
/**
|
|
19379
|
+
* Tree1 icon component
|
|
19380
|
+
* @example
|
|
19381
|
+
* ```tsx
|
|
19382
|
+
* import { Tree1 } from 'magick-icons';
|
|
19383
|
+
*
|
|
19384
|
+
* <Tree1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19385
|
+
* ```
|
|
19386
|
+
*/
|
|
19387
|
+
declare const Tree1: React.ForwardRefExoticComponent<Omit<Tree1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19388
|
+
|
|
19389
|
+
/**
|
|
19390
|
+
* Props for the Truck1 icon component
|
|
19391
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19392
|
+
*/
|
|
19393
|
+
interface Truck1Props extends React.SVGProps<SVGSVGElement> {
|
|
19394
|
+
size?: number | string;
|
|
19395
|
+
}
|
|
19396
|
+
/**
|
|
19397
|
+
* Truck1 icon component
|
|
19398
|
+
* @example
|
|
19399
|
+
* ```tsx
|
|
19400
|
+
* import { Truck1 } from 'magick-icons';
|
|
19401
|
+
*
|
|
19402
|
+
* <Truck1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19403
|
+
* ```
|
|
19404
|
+
*/
|
|
19405
|
+
declare const Truck1: React.ForwardRefExoticComponent<Omit<Truck1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19406
|
+
|
|
19407
|
+
/**
|
|
19408
|
+
* Props for the Truck11 icon component
|
|
19409
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19410
|
+
*/
|
|
19411
|
+
interface Truck11Props extends React.SVGProps<SVGSVGElement> {
|
|
19412
|
+
size?: number | string;
|
|
19413
|
+
}
|
|
19414
|
+
/**
|
|
19415
|
+
* Truck11 icon component
|
|
19416
|
+
* @example
|
|
19417
|
+
* ```tsx
|
|
19418
|
+
* import { Truck11 } from 'magick-icons';
|
|
19419
|
+
*
|
|
19420
|
+
* <Truck11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19421
|
+
* ```
|
|
19422
|
+
*/
|
|
19423
|
+
declare const Truck11: React.ForwardRefExoticComponent<Omit<Truck11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19424
|
+
|
|
19425
|
+
/**
|
|
19426
|
+
* Props for the TruckFast1 icon component
|
|
19427
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19428
|
+
*/
|
|
19429
|
+
interface TruckFast1Props extends React.SVGProps<SVGSVGElement> {
|
|
19430
|
+
size?: number | string;
|
|
19431
|
+
}
|
|
19432
|
+
/**
|
|
19433
|
+
* TruckFast1 icon component
|
|
19434
|
+
* @example
|
|
19435
|
+
* ```tsx
|
|
19436
|
+
* import { TruckFast1 } from 'magick-icons';
|
|
19437
|
+
*
|
|
19438
|
+
* <TruckFast1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19439
|
+
* ```
|
|
19440
|
+
*/
|
|
19441
|
+
declare const TruckFast1: React.ForwardRefExoticComponent<Omit<TruckFast1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19442
|
+
|
|
19443
|
+
/**
|
|
19444
|
+
* Props for the TruckRemove1 icon component
|
|
19445
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19446
|
+
*/
|
|
19447
|
+
interface TruckRemove1Props extends React.SVGProps<SVGSVGElement> {
|
|
19448
|
+
size?: number | string;
|
|
19449
|
+
}
|
|
19450
|
+
/**
|
|
19451
|
+
* TruckRemove1 icon component
|
|
19452
|
+
* @example
|
|
19453
|
+
* ```tsx
|
|
19454
|
+
* import { TruckRemove1 } from 'magick-icons';
|
|
19455
|
+
*
|
|
19456
|
+
* <TruckRemove1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19457
|
+
* ```
|
|
19458
|
+
*/
|
|
19459
|
+
declare const TruckRemove1: React.ForwardRefExoticComponent<Omit<TruckRemove1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19460
|
+
|
|
19461
|
+
/**
|
|
19462
|
+
* Props for the TruckTick1 icon component
|
|
19463
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19464
|
+
*/
|
|
19465
|
+
interface TruckTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
19466
|
+
size?: number | string;
|
|
19467
|
+
}
|
|
19468
|
+
/**
|
|
19469
|
+
* TruckTick1 icon component
|
|
19470
|
+
* @example
|
|
19471
|
+
* ```tsx
|
|
19472
|
+
* import { TruckTick1 } from 'magick-icons';
|
|
19473
|
+
*
|
|
19474
|
+
* <TruckTick1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19475
|
+
* ```
|
|
19476
|
+
*/
|
|
19477
|
+
declare const TruckTick1: React.ForwardRefExoticComponent<Omit<TruckTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19478
|
+
|
|
19479
|
+
/**
|
|
19480
|
+
* Props for the TruckTime1 icon component
|
|
19481
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19482
|
+
*/
|
|
19483
|
+
interface TruckTime1Props extends React.SVGProps<SVGSVGElement> {
|
|
19484
|
+
size?: number | string;
|
|
19485
|
+
}
|
|
19486
|
+
/**
|
|
19487
|
+
* TruckTime1 icon component
|
|
19488
|
+
* @example
|
|
19489
|
+
* ```tsx
|
|
19490
|
+
* import { TruckTime1 } from 'magick-icons';
|
|
19491
|
+
*
|
|
19492
|
+
* <TruckTime1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19493
|
+
* ```
|
|
19494
|
+
*/
|
|
19495
|
+
declare const TruckTime1: React.ForwardRefExoticComponent<Omit<TruckTime1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19496
|
+
|
|
19497
|
+
/**
|
|
19498
|
+
* Props for the Video icon component
|
|
19499
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19500
|
+
*/
|
|
19501
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
19502
|
+
size?: number | string;
|
|
19503
|
+
}
|
|
19504
|
+
/**
|
|
19505
|
+
* Video icon component
|
|
19506
|
+
* @example
|
|
19507
|
+
* ```tsx
|
|
19508
|
+
* import { Video } from 'magick-icons';
|
|
19509
|
+
*
|
|
19510
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
19511
|
+
* ```
|
|
19512
|
+
*/
|
|
19513
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19514
|
+
|
|
19515
|
+
/**
|
|
19516
|
+
* Props for the Wallet1 icon component
|
|
19517
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19518
|
+
*/
|
|
19519
|
+
interface Wallet1Props extends React.SVGProps<SVGSVGElement> {
|
|
19520
|
+
size?: number | string;
|
|
19521
|
+
}
|
|
19522
|
+
/**
|
|
19523
|
+
* Wallet1 icon component
|
|
19524
|
+
* @example
|
|
19525
|
+
* ```tsx
|
|
19526
|
+
* import { Wallet1 } from 'magick-icons';
|
|
19527
|
+
*
|
|
19528
|
+
* <Wallet1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19529
|
+
* ```
|
|
19530
|
+
*/
|
|
19531
|
+
declare const Wallet1: React.ForwardRefExoticComponent<Omit<Wallet1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19532
|
+
|
|
19533
|
+
/**
|
|
19534
|
+
* Props for the Wallet11 icon component
|
|
19535
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19536
|
+
*/
|
|
19537
|
+
interface Wallet11Props extends React.SVGProps<SVGSVGElement> {
|
|
19538
|
+
size?: number | string;
|
|
19539
|
+
}
|
|
19540
|
+
/**
|
|
19541
|
+
* Wallet11 icon component
|
|
19542
|
+
* @example
|
|
19543
|
+
* ```tsx
|
|
19544
|
+
* import { Wallet11 } from 'magick-icons';
|
|
19545
|
+
*
|
|
19546
|
+
* <Wallet11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19547
|
+
* ```
|
|
19548
|
+
*/
|
|
19549
|
+
declare const Wallet11: React.ForwardRefExoticComponent<Omit<Wallet11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
19550
|
+
|
|
19551
|
+
/**
|
|
19552
|
+
* Props for the Wallet211 icon component
|
|
19553
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
19554
|
+
*/
|
|
19555
|
+
interface Wallet211Props extends React.SVGProps<SVGSVGElement> {
|
|
19556
|
+
size?: number | string;
|
|
19557
|
+
}
|
|
19558
|
+
/**
|
|
19559
|
+
* Wallet211 icon component
|
|
19560
|
+
* @example
|
|
19561
|
+
* ```tsx
|
|
19562
|
+
* import { Wallet211 } from 'magick-icons';
|
|
19563
|
+
*
|
|
19564
|
+
* <Wallet211 size={24} className="text-blue-500" strokeWidth={2} />
|
|
19565
|
+
* ```
|
|
19566
|
+
*/
|
|
19567
|
+
declare const Wallet211: React.ForwardRefExoticComponent<Omit<Wallet211Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18542
19568
|
|
|
18543
19569
|
/**
|
|
18544
19570
|
* Props for the X icon component
|
|
@@ -18558,4 +19584,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
18558
19584
|
*/
|
|
18559
19585
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
18560
19586
|
|
|
18561
|
-
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, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, MagickoReceipt211, type MagickoReceipt211Props, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight, MagickoRotateRight1, type MagickoRotateRight1Props, type MagickoRotateRightProps, MagickoRowHorizontal, type MagickoRowHorizontalProps, MagickoRowVertical, type MagickoRowVerticalProps, MagickoSad3, type MagickoSad3Props, MagickoSadFace, type MagickoSadFaceProps, MagickoSagittarius, type MagickoSagittariusProps, MagickoSatisfied, type MagickoSatisfiedProps, MagickoSave2, type MagickoSave2Props, MagickoSaveAdd, type MagickoSaveAddProps, MagickoSaveMinus, type MagickoSaveMinusProps, MagickoSaveRemove, type MagickoSaveRemoveProps, MagickoScheduled1, type MagickoScheduled1Props, MagickoScreenmirroring, type MagickoScreenmirroringProps, MagickoScroll01, type MagickoScroll01Props, MagickoScroll02, type MagickoScroll02Props, MagickoScrollfinger, type MagickoScrollfingerProps, MagickoSearch, MagickoSearchCloud, type MagickoSearchCloudProps, type MagickoSearchProps, MagickoSearchZoomIn1, type MagickoSearchZoomIn1Props, MagickoSearchZoomOut1, type MagickoSearchZoomOut1Props, MagickoSecurity, type MagickoSecurityProps, MagickoSecuritySafe, type MagickoSecuritySafeProps, MagickoSecurityUser, type MagickoSecurityUserProps, MagickoSend, MagickoSend1, type MagickoSend1Props, MagickoSend2, MagickoSend21, type MagickoSend21Props, type MagickoSend2Props, MagickoSendCloud, type MagickoSendCloudProps, type MagickoSendProps, MagickoSendReceiveCloud, type MagickoSendReceiveCloudProps, MagickoSendSquare01, type MagickoSendSquare01Props, MagickoSendSquare02, type MagickoSendSquare02Props, MagickoSetting2, type MagickoSetting2Props, MagickoSetting3, type MagickoSetting3Props, MagickoSetting4, type MagickoSetting4Props, MagickoSetting5, type MagickoSetting5Props, MagickoSettings, MagickoSettings1, type MagickoSettings1Props, type MagickoSettingsProps, MagickoShare, type MagickoShareProps, MagickoShiningHeart, type MagickoShiningHeartProps, MagickoShip, type MagickoShipProps, MagickoShop, MagickoShop1, type MagickoShop1Props, type MagickoShopProps, MagickoShoppingBag, type MagickoShoppingBagProps, MagickoShoppingCart, type MagickoShoppingCartProps, MagickoShuffle, type MagickoShuffleProps, MagickoSidebarBottom, type MagickoSidebarBottomProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSidebarRight, type MagickoSidebarRightProps, MagickoSidebarTop, type MagickoSidebarTopProps, MagickoSignedCloud, type MagickoSignedCloudProps, MagickoSimcard, MagickoSimcard1, type MagickoSimcard1Props, MagickoSimcard2, type MagickoSimcard2Props, type MagickoSimcardProps, MagickoSlash, type MagickoSlashProps, MagickoSleepZzz, type MagickoSleepZzzProps, MagickoSmallcaps, type MagickoSmallcapsProps, MagickoSmartBag, type MagickoSmartBagProps, MagickoSmartCar, type MagickoSmartCarProps, MagickoSmartCursor, type MagickoSmartCursorProps, MagickoSmartLockAi, type MagickoSmartLockAiProps, MagickoSmile, type MagickoSmileProps, MagickoSmileys, type MagickoSmileysProps, MagickoSmilingWithHeart, type MagickoSmilingWithHeartProps, MagickoSms, MagickoSmsNotification, type MagickoSmsNotificationProps, type MagickoSmsProps, MagickoSnowflake, type MagickoSnowflakeProps, MagickoSort, MagickoSortAdd, type MagickoSortAddProps, MagickoSortAscending, type MagickoSortAscendingProps, MagickoSortCheck, type MagickoSortCheckProps, MagickoSortDescending, type MagickoSortDescendingProps, type MagickoSortProps, MagickoSortRemove, type MagickoSortRemoveProps, MagickoSound, MagickoSound1, type MagickoSound1Props, type MagickoSoundProps, MagickoSpeaker, MagickoSpeaker1, type MagickoSpeaker1Props, type MagickoSpeakerProps, MagickoSquarefinger, type MagickoSquarefingerProps, MagickoStar, type MagickoStarProps, MagickoStarSlash, type MagickoStarSlashProps, MagickoStars, MagickoStars1, type MagickoStars1Props, type MagickoStarsProps, MagickoStatusUp, type MagickoStatusUpProps, MagickoSticker, type MagickoStickerProps, MagickoStickynote, type MagickoStickynoteProps, MagickoStop, type MagickoStopProps, MagickoStory, type MagickoStoryProps, MagickoSubtitle, type MagickoSubtitleProps, MagickoSun, MagickoSun1, type MagickoSun1Props, MagickoSunFog, type MagickoSunFogProps, type MagickoSunProps, MagickoSupport, MagickoSupport1, type MagickoSupport1Props, type MagickoSupportProps, MagickoSwapHorizontal01, type MagickoSwapHorizontal01Props, MagickoSwapHorizontal02, type MagickoSwapHorizontal02Props, MagickoSwapHorizontal03, type MagickoSwapHorizontal03Props, MagickoSweatSmile, type MagickoSweatSmileProps, MagickoTag, MagickoTag2, type MagickoTag2Props, MagickoTagCross, type MagickoTagCrossProps, type MagickoTagProps, MagickoTagUser, type MagickoTagUserProps, MagickoTask, type MagickoTaskProps, MagickoTaskSquare, type MagickoTaskSquareProps, MagickoTeacher, type MagickoTeacherProps, MagickoTelescope, MagickoTelescope1, type MagickoTelescope1Props, type MagickoTelescopeProps, MagickoText, MagickoTextBold, type MagickoTextBoldProps, MagickoTextItalic, type MagickoTextItalicProps, type MagickoTextProps, MagickoTextUnderline, type MagickoTextUnderlineProps, MagickoTextalignCenter, type MagickoTextalignCenterProps, MagickoTextalignJustifycenter, type MagickoTextalignJustifycenterProps, MagickoTextalignJustifyleft, type MagickoTextalignJustifyleftProps, MagickoTextalignJustifyright, type MagickoTextalignJustifyrightProps, MagickoTextalignLeft, type MagickoTextalignLeftProps, MagickoTextalignRight, type MagickoTextalignRightProps, MagickoTickCircle, type MagickoTickCircleProps, MagickoTickSquare, type MagickoTickSquareProps, MagickoTicket, MagickoTicket1, type MagickoTicket1Props, MagickoTicket2, type MagickoTicket2Props, MagickoTicketDiscount, type MagickoTicketDiscountProps, MagickoTicketExpired, type MagickoTicketExpiredProps, type MagickoTicketProps, MagickoTicketStar, type MagickoTicketStarProps, MagickoTimer, type MagickoTimerProps, MagickoToLeftArrow, type MagickoToLeftArrowProps, MagickoToRightArrow, type MagickoToRightArrowProps, MagickoToleft, type MagickoToleftProps, MagickoTone, type MagickoToneProps, MagickoTongueClosedEyes, type MagickoTongueClosedEyesProps, MagickoTopBottomGrid, type MagickoTopBottomGridProps, MagickoToright, type MagickoTorightProps, MagickoTouchFinger, type MagickoTouchFingerProps, MagickoTouchIdFinger, type MagickoTouchIdFingerProps, MagickoTrade1, type MagickoTrade1Props, MagickoTransactionArrows, type MagickoTransactionArrowsProps, MagickoTransactionMinus, type MagickoTransactionMinusProps, MagickoTranslate, MagickoTranslate1, type MagickoTranslate1Props, MagickoTranslate2, type MagickoTranslate2Props, type MagickoTranslateProps, MagickoTrash, type MagickoTrashProps, MagickoTrendDown, type MagickoTrendDownProps, MagickoTrendUp, type MagickoTrendUpProps, MagickoUndoArrow, type MagickoUndoArrowProps, MagickoUnlimited, type MagickoUnlimitedProps, MagickoUploadArrow, type MagickoUploadArrowProps, MagickoUploadHorizontalArrow, type MagickoUploadHorizontalArrowProps, MagickoUpsideDownFace, type MagickoUpsideDownFaceProps, MagickoUser, type MagickoUserProps, MagickoVIPCloud, type MagickoVIPCloudProps, MagickoVerify, type MagickoVerifyProps, MagickoVideo, MagickoVideo1, type MagickoVideo1Props, MagickoVideoHorizontal, type MagickoVideoHorizontalProps, MagickoVideoPlay, type MagickoVideoPlayProps, type MagickoVideoProps, MagickoVideoSlash, type MagickoVideoSlashProps, MagickoVoiceCircle, type MagickoVoiceCircleProps, MagickoVoiceSquare, type MagickoVoiceSquareProps, MagickoVolumeCross, type MagickoVolumeCrossProps, MagickoVolumeHigh, type MagickoVolumeHighProps, MagickoVolumeLow, MagickoVolumeLow1, type MagickoVolumeLow1Props, type MagickoVolumeLowProps, MagickoVolumeMute, type MagickoVolumeMuteProps, MagickoVolumeSlash, type MagickoVolumeSlashProps, MagickoVolumeUp, type MagickoVolumeUpProps, MagickoWarning2, type MagickoWarning2Props, MagickoWatch1, MagickoWatch11, type MagickoWatch11Props, type MagickoWatch1Props, MagickoWatchStatus1, type MagickoWatchStatus1Props, MagickoWeary, type MagickoWearyProps, MagickoWeight1, MagickoWeight11, type MagickoWeight11Props, type MagickoWeight1Props, MagickoWind, MagickoWind1, type MagickoWind1Props, MagickoWind2, type MagickoWind2Props, type MagickoWindProps, MagickoWoman, type MagickoWomanProps, MagickoZoomIn, type MagickoZoomInProps, MagickoZoomOut, type MagickoZoomOutProps, MainComponent1, type MainComponent1Props, Marketing, type MarketingProps, Mask1, Mask11, Mask111, type Mask111Props, type Mask11Props, type Mask1Props, Mask21, Mask211, type Mask211Props, type Mask21Props, Mask31, type Mask31Props, MeshTopology1, type MeshTopology1Props, MessageAdd1, MessageAdd11, type MessageAdd11Props, type MessageAdd1Props, MessageBubble1, type MessageBubble1Props, MessageCircle1, type MessageCircle1Props, MessageEdit, MessageEdit1, type MessageEdit1Props, type MessageEditProps, MessageMinus1, type MessageMinus1Props, MessageRemove1, type MessageRemove1Props, MessageSquare1, type MessageSquare1Props, MessageText11, type MessageText11Props, MessageTick1, type MessageTick1Props, MessageTime1, type MessageTime1Props, Messages1, type Messages1Props, Messages21, type Messages21Props, MessagesBubbles21, type MessagesBubbles21Props, Milk1, type Milk1Props, Mirror1, Mirror11, type Mirror11Props, type Mirror1Props, Mirror21, type Mirror21Props, MoneyAdd1, type MoneyAdd1Props, MoneyChange1, type MoneyChange1Props, MoneyForbidden1, type MoneyForbidden1Props, MoneyRecive1, type MoneyRecive1Props, MoneyRemove1, type MoneyRemove1Props, MoneySend1, type MoneySend1Props, MoneyTick1, type MoneyTick1Props, 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 };
|
|
19587
|
+
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, MagickoMobile, MagickoMobile1, type MagickoMobile1Props, type MagickoMobileProps, MagickoMoney, MagickoMoney1, type MagickoMoney1Props, MagickoMoney2, MagickoMoney21, type MagickoMoney21Props, type MagickoMoney2Props, MagickoMoney3, type MagickoMoney3Props, MagickoMoney4, type MagickoMoney4Props, type MagickoMoneyProps, MagickoMoneys, type MagickoMoneysProps, MagickoMonitor1, MagickoMonitor11, type MagickoMonitor11Props, type MagickoMonitor1Props, MagickoMonitorMobile1, type MagickoMonitorMobile1Props, MagickoMonitorRecorder1, type MagickoMonitorRecorder1Props, MagickoMoon, type MagickoMoonProps, MagickoMountains, type MagickoMountainsProps, MagickoMouse1, MagickoMouse11, type MagickoMouse11Props, type MagickoMouse1Props, MagickoMouse21, type MagickoMouse21Props, MagickoMouse31, type MagickoMouse31Props, MagickoMushroom, type MagickoMushroomProps, MagickoMusic, MagickoMusicFilter, type MagickoMusicFilterProps, MagickoMusicLibrary2, type MagickoMusicLibrary2Props, MagickoMusicPlay, type MagickoMusicPlayProps, MagickoMusicPlaylist, type MagickoMusicPlaylistProps, type MagickoMusicProps, MagickoMusicalNoteAi, type MagickoMusicalNoteAiProps, MagickoMusicnote, type MagickoMusicnoteProps, MagickoNext, type MagickoNextProps, MagickoNote, MagickoNote1, MagickoNote11, type MagickoNote11Props, type MagickoNote1Props, MagickoNote2, MagickoNote21, type MagickoNote21Props, type MagickoNote2Props, MagickoNoteAdd, type MagickoNoteAddProps, MagickoNoteFavorite, type MagickoNoteFavoriteProps, type MagickoNoteProps, MagickoNoteRemove, type MagickoNoteRemoveProps, MagickoNoteText, type MagickoNoteTextProps, MagickoNotification, MagickoNotification2, type MagickoNotification2Props, MagickoNotificationBing, type MagickoNotificationBingProps, MagickoNotificationCircle, type MagickoNotificationCircleProps, type MagickoNotificationProps, MagickoOak, type MagickoOakProps, MagickoPadlock, type MagickoPadlockProps, MagickoPaintBrush2, type MagickoPaintBrush2Props, MagickoPaintRoller, type MagickoPaintRollerProps, MagickoPaintbucket, type MagickoPaintbucketProps, MagickoPaperclip, MagickoPaperclip2, type MagickoPaperclip2Props, type MagickoPaperclipProps, MagickoParagraphspacing, type MagickoParagraphspacingProps, MagickoPartlycloudy, type MagickoPartlycloudyProps, MagickoPause, type MagickoPauseProps, MagickoPeople, type MagickoPeopleProps, MagickoPercentageCircle, type MagickoPercentageCircleProps, MagickoPercentageSquare, type MagickoPercentageSquareProps, MagickoPersonalcard, type MagickoPersonalcardProps, MagickoPlay, type MagickoPlayProps, MagickoPlayfinger, type MagickoPlayfingerProps, MagickoPoint, type MagickoPointProps, MagickoPointfinger, type MagickoPointfingerProps, MagickoPresentationChart, type MagickoPresentationChartProps, MagickoPrevious, type MagickoPreviousProps, MagickoPrinter, MagickoPrinter1, type MagickoPrinter1Props, type MagickoPrinterProps, MagickoPrinterSlash, type MagickoPrinterSlashProps, MagickoProfile, MagickoProfile1, type MagickoProfile1Props, MagickoProfile2user, type MagickoProfile2userProps, MagickoProfileAdd, type MagickoProfileAddProps, MagickoProfileCircle, type MagickoProfileCircleProps, MagickoProfileDelete, type MagickoProfileDeleteProps, type MagickoProfileProps, MagickoProfileRemove, type MagickoProfileRemoveProps, MagickoProfileTick, type MagickoProfileTickProps, MagickoProtectfinger, type MagickoProtectfingerProps, MagickoPushbutton, type MagickoPushbuttonProps, MagickoPushfinger, type MagickoPushfingerProps, MagickoQuestionBubble, type MagickoQuestionBubbleProps, MagickoQuestionCircle, type MagickoQuestionCircleProps, MagickoQuestionSquare, type MagickoQuestionSquareProps, MagickoQuoteDown, type MagickoQuoteDownProps, MagickoQuoteUp, type MagickoQuoteUpProps, MagickoRam, MagickoRam2, type MagickoRam2Props, type MagickoRamProps, MagickoReceipt, MagickoReceipt1, MagickoReceipt11, type MagickoReceipt11Props, type MagickoReceipt1Props, MagickoReceipt2, MagickoReceipt21, MagickoReceipt211, type MagickoReceipt211Props, type MagickoReceipt21Props, type MagickoReceipt2Props, MagickoReceiptAdd, type MagickoReceiptAddProps, MagickoReceiptDiscount, type MagickoReceiptDiscountProps, MagickoReceiptDisscount, type MagickoReceiptDisscountProps, MagickoReceiptEdit, type MagickoReceiptEditProps, MagickoReceiptItem, type MagickoReceiptItemProps, MagickoReceiptMinus, type MagickoReceiptMinusProps, type MagickoReceiptProps, MagickoReceiptSearch, type MagickoReceiptSearchProps, MagickoReceiptSquare, type MagickoReceiptSquareProps, MagickoReceiptText, type MagickoReceiptTextProps, MagickoReceiveCloud, type MagickoReceiveCloudProps, MagickoReceiveSquare01, type MagickoReceiveSquare01Props, MagickoReceiveSquare02, type MagickoReceiveSquare02Props, MagickoReceived, type MagickoReceivedProps, MagickoRecord, type MagickoRecordProps, MagickoRedoArrow, type MagickoRedoArrowProps, MagickoRefreshArrow01, type MagickoRefreshArrow01Props, MagickoRefreshArrow02, type MagickoRefreshArrow02Props, MagickoRefreshCircle, type MagickoRefreshCircleProps, MagickoRefreshCloud, type MagickoRefreshCloudProps, MagickoRefreshLeft, type MagickoRefreshLeftProps, MagickoRefreshRight, type MagickoRefreshRightProps, MagickoRefreshSquare, type MagickoRefreshSquareProps, MagickoRelaxed, type MagickoRelaxedProps, MagickoRepeatArrow, type MagickoRepeatArrowProps, MagickoRepeatArrows, type MagickoRepeatArrowsProps, MagickoRepeatCircle, type MagickoRepeatCircleProps, MagickoRepeateMusic, type MagickoRepeateMusicProps, MagickoRepeateOne, type MagickoRepeateOneProps, MagickoReverseTimeArrow, type MagickoReverseTimeArrowProps, MagickoRightCloud, type MagickoRightCloudProps, MagickoRotateLeft, MagickoRotateLeft1, type MagickoRotateLeft1Props, type MagickoRotateLeftProps, MagickoRotateRight, MagickoRotateRight1, type MagickoRotateRight1Props, type MagickoRotateRightProps, MagickoRowHorizontal, type MagickoRowHorizontalProps, MagickoRowVertical, type MagickoRowVerticalProps, MagickoSad3, type MagickoSad3Props, MagickoSadFace, type MagickoSadFaceProps, MagickoSagittarius, type MagickoSagittariusProps, MagickoSatisfied, type MagickoSatisfiedProps, MagickoSave2, type MagickoSave2Props, MagickoSaveAdd, type MagickoSaveAddProps, MagickoSaveMinus, type MagickoSaveMinusProps, MagickoSaveRemove, type MagickoSaveRemoveProps, MagickoScheduled1, type MagickoScheduled1Props, MagickoScreenmirroring, type MagickoScreenmirroringProps, MagickoScroll01, type MagickoScroll01Props, MagickoScroll02, type MagickoScroll02Props, MagickoScrollfinger, type MagickoScrollfingerProps, MagickoSearch, MagickoSearchCloud, type MagickoSearchCloudProps, type MagickoSearchProps, MagickoSearchZoomIn1, type MagickoSearchZoomIn1Props, MagickoSearchZoomOut1, type MagickoSearchZoomOut1Props, MagickoSecurity, type MagickoSecurityProps, MagickoSecuritySafe, type MagickoSecuritySafeProps, MagickoSecurityUser, type MagickoSecurityUserProps, MagickoSend, MagickoSend1, type MagickoSend1Props, MagickoSend2, MagickoSend21, type MagickoSend21Props, type MagickoSend2Props, MagickoSendCloud, type MagickoSendCloudProps, type MagickoSendProps, MagickoSendReceiveCloud, type MagickoSendReceiveCloudProps, MagickoSendSquare01, type MagickoSendSquare01Props, MagickoSendSquare02, type MagickoSendSquare02Props, MagickoSetting2, type MagickoSetting2Props, MagickoSetting3, type MagickoSetting3Props, MagickoSetting4, type MagickoSetting4Props, MagickoSetting5, type MagickoSetting5Props, MagickoSettings, MagickoSettings1, type MagickoSettings1Props, type MagickoSettingsProps, MagickoShare, type MagickoShareProps, MagickoShiningHeart, type MagickoShiningHeartProps, MagickoShip, type MagickoShipProps, MagickoShop, MagickoShop1, type MagickoShop1Props, type MagickoShopProps, MagickoShoppingBag, type MagickoShoppingBagProps, MagickoShoppingCart, type MagickoShoppingCartProps, MagickoShuffle, type MagickoShuffleProps, MagickoSidebarBottom, type MagickoSidebarBottomProps, MagickoSidebarLeft, type MagickoSidebarLeftProps, MagickoSidebarRight, type MagickoSidebarRightProps, MagickoSidebarTop, type MagickoSidebarTopProps, MagickoSignedCloud, type MagickoSignedCloudProps, MagickoSimcard, MagickoSimcard1, type MagickoSimcard1Props, MagickoSimcard2, type MagickoSimcard2Props, type MagickoSimcardProps, MagickoSlash, type MagickoSlashProps, MagickoSleepZzz, type MagickoSleepZzzProps, MagickoSmallcaps, type MagickoSmallcapsProps, MagickoSmartBag, type MagickoSmartBagProps, MagickoSmartCar, type MagickoSmartCarProps, MagickoSmartCursor, type MagickoSmartCursorProps, MagickoSmartLockAi, type MagickoSmartLockAiProps, MagickoSmile, type MagickoSmileProps, MagickoSmileys, type MagickoSmileysProps, MagickoSmilingWithHeart, type MagickoSmilingWithHeartProps, MagickoSms, MagickoSmsNotification, type MagickoSmsNotificationProps, type MagickoSmsProps, MagickoSnowflake, type MagickoSnowflakeProps, MagickoSort, MagickoSortAdd, type MagickoSortAddProps, MagickoSortAscending, type MagickoSortAscendingProps, MagickoSortCheck, type MagickoSortCheckProps, MagickoSortDescending, type MagickoSortDescendingProps, type MagickoSortProps, MagickoSortRemove, type MagickoSortRemoveProps, MagickoSound, MagickoSound1, type MagickoSound1Props, type MagickoSoundProps, MagickoSpeaker, MagickoSpeaker1, type MagickoSpeaker1Props, type MagickoSpeakerProps, MagickoSquarefinger, type MagickoSquarefingerProps, MagickoStar, type MagickoStarProps, MagickoStarSlash, type MagickoStarSlashProps, MagickoStars, MagickoStars1, type MagickoStars1Props, type MagickoStarsProps, MagickoStatusUp, type MagickoStatusUpProps, MagickoSticker, type MagickoStickerProps, MagickoStickynote, type MagickoStickynoteProps, MagickoStop, type MagickoStopProps, MagickoStory, type MagickoStoryProps, MagickoSubtitle, type MagickoSubtitleProps, MagickoSun, MagickoSun1, type MagickoSun1Props, MagickoSunFog, type MagickoSunFogProps, type MagickoSunProps, MagickoSupport, MagickoSupport1, type MagickoSupport1Props, type MagickoSupportProps, MagickoSwapHorizontal01, type MagickoSwapHorizontal01Props, MagickoSwapHorizontal02, type MagickoSwapHorizontal02Props, MagickoSwapHorizontal03, type MagickoSwapHorizontal03Props, MagickoSweatSmile, type MagickoSweatSmileProps, MagickoTag, MagickoTag2, type MagickoTag2Props, MagickoTagCross, type MagickoTagCrossProps, type MagickoTagProps, MagickoTagUser, type MagickoTagUserProps, MagickoTask, type MagickoTaskProps, MagickoTaskSquare, type MagickoTaskSquareProps, MagickoTeacher, type MagickoTeacherProps, MagickoTelescope, MagickoTelescope1, type MagickoTelescope1Props, type MagickoTelescopeProps, MagickoText, MagickoTextBold, type MagickoTextBoldProps, MagickoTextItalic, type MagickoTextItalicProps, type MagickoTextProps, MagickoTextUnderline, type MagickoTextUnderlineProps, MagickoTextalignCenter, type MagickoTextalignCenterProps, MagickoTextalignJustifycenter, type MagickoTextalignJustifycenterProps, MagickoTextalignJustifyleft, type MagickoTextalignJustifyleftProps, MagickoTextalignJustifyright, type MagickoTextalignJustifyrightProps, MagickoTextalignLeft, type MagickoTextalignLeftProps, MagickoTextalignRight, type MagickoTextalignRightProps, MagickoTickCircle, type MagickoTickCircleProps, MagickoTickSquare, type MagickoTickSquareProps, MagickoTicket, MagickoTicket1, type MagickoTicket1Props, MagickoTicket2, type MagickoTicket2Props, MagickoTicketDiscount, type MagickoTicketDiscountProps, MagickoTicketExpired, type MagickoTicketExpiredProps, type MagickoTicketProps, MagickoTicketStar, type MagickoTicketStarProps, MagickoTimer, type MagickoTimerProps, MagickoToLeftArrow, type MagickoToLeftArrowProps, MagickoToRightArrow, type MagickoToRightArrowProps, MagickoToleft, type MagickoToleftProps, MagickoTone, type MagickoToneProps, MagickoTongueClosedEyes, type MagickoTongueClosedEyesProps, MagickoTopBottomGrid, type MagickoTopBottomGridProps, MagickoToright, type MagickoTorightProps, MagickoTouchFinger, type MagickoTouchFingerProps, MagickoTouchIdFinger, type MagickoTouchIdFingerProps, MagickoTrade1, type MagickoTrade1Props, MagickoTransactionArrows, type MagickoTransactionArrowsProps, MagickoTransactionMinus, type MagickoTransactionMinusProps, MagickoTranslate, MagickoTranslate1, type MagickoTranslate1Props, MagickoTranslate2, type MagickoTranslate2Props, type MagickoTranslateProps, MagickoTrash, type MagickoTrashProps, MagickoTrendDown, type MagickoTrendDownProps, MagickoTrendUp, type MagickoTrendUpProps, MagickoUndoArrow, type MagickoUndoArrowProps, MagickoUnlimited, type MagickoUnlimitedProps, MagickoUploadArrow, type MagickoUploadArrowProps, MagickoUploadHorizontalArrow, type MagickoUploadHorizontalArrowProps, MagickoUpsideDownFace, type MagickoUpsideDownFaceProps, MagickoUser, type MagickoUserProps, MagickoVIPCloud, type MagickoVIPCloudProps, MagickoVerify, type MagickoVerifyProps, MagickoVideo, MagickoVideo1, type MagickoVideo1Props, MagickoVideoHorizontal, type MagickoVideoHorizontalProps, MagickoVideoPlay, type MagickoVideoPlayProps, type MagickoVideoProps, MagickoVideoSlash, type MagickoVideoSlashProps, MagickoVoiceCircle, type MagickoVoiceCircleProps, MagickoVoiceSquare, type MagickoVoiceSquareProps, MagickoVolumeCross, type MagickoVolumeCrossProps, MagickoVolumeHigh, type MagickoVolumeHighProps, MagickoVolumeLow, MagickoVolumeLow1, type MagickoVolumeLow1Props, type MagickoVolumeLowProps, MagickoVolumeMute, type MagickoVolumeMuteProps, MagickoVolumeSlash, type MagickoVolumeSlashProps, MagickoVolumeUp, type MagickoVolumeUpProps, MagickoWarning2, type MagickoWarning2Props, MagickoWatch1, MagickoWatch11, type MagickoWatch11Props, type MagickoWatch1Props, MagickoWatchStatus1, type MagickoWatchStatus1Props, MagickoWeary, type MagickoWearyProps, MagickoWeight1, MagickoWeight11, type MagickoWeight11Props, type MagickoWeight1Props, MagickoWind, MagickoWind1, type MagickoWind1Props, MagickoWind2, type MagickoWind2Props, type MagickoWindProps, MagickoWoman, type MagickoWomanProps, MagickoZoomIn, type MagickoZoomInProps, MagickoZoomOut, type MagickoZoomOutProps, MainComponent1, type MainComponent1Props, Marketing, type MarketingProps, Mask1, Mask11, Mask111, type Mask111Props, type Mask11Props, type Mask1Props, Mask21, Mask211, type Mask211Props, type Mask21Props, Mask31, type Mask31Props, MeshTopology1, type MeshTopology1Props, MessageAdd1, MessageAdd11, type MessageAdd11Props, type MessageAdd1Props, MessageBubble1, type MessageBubble1Props, MessageCircle1, type MessageCircle1Props, MessageEdit, MessageEdit1, type MessageEdit1Props, type MessageEditProps, MessageMinus1, type MessageMinus1Props, MessageRemove1, type MessageRemove1Props, MessageSquare1, type MessageSquare1Props, MessageText11, type MessageText11Props, MessageTick1, type MessageTick1Props, MessageTime1, type MessageTime1Props, Messages1, type Messages1Props, Messages21, type Messages21Props, MessagesBubbles21, type MessagesBubbles21Props, Milk1, type Milk1Props, Mirror1, Mirror11, type Mirror11Props, type Mirror1Props, Mirror21, type Mirror21Props, MoneyAdd1, type MoneyAdd1Props, MoneyChange1, type MoneyChange1Props, MoneyForbidden1, type MoneyForbidden1Props, MoneyRecive1, type MoneyRecive1Props, MoneyRemove1, type MoneyRemove1Props, MoneySend1, type MoneySend1Props, MoneyTick1, type MoneyTick1Props, MoneyTime1, type MoneyTime1Props, MoreCircle1, type MoreCircle1Props, MoreSquare1, type MoreSquare1Props, MouseCircle1, type MouseCircle1Props, MouseSquare1, type MouseSquare1Props, Network, Network1, type Network1Props, type NetworkProps, NotiDot, type NotiDotProps, OmegaCircle1, type OmegaCircle1Props, OmegaSquare1, type OmegaSquare1Props, PA, type PAProps, PaintBrush1, type PaintBrush1Props, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PenBrush, type PenBrushProps, Pet1, type Pet1Props, PictureFrame1, type PictureFrame1Props, PlayFilled, type PlayFilledProps, Plesk1, type Plesk1Props, Radar1, Radar11, type Radar11Props, type Radar1Props, Radar21, type Radar21Props, Ranking1, Ranking11, type Ranking11Props, type Ranking1Props, Reserve1, type Reserve1Props, RouteSquare1, type RouteSquare1Props, Routing1, type Routing1Props, Routing21, type Routing21Props, SafeHome1, type SafeHome1Props, SecurityCard1, type SecurityCard1Props, Share1, type Share1Props, Signature, type SignatureProps, Signpost1, type Signpost1Props, Slider1, type Slider1Props, SliderHorizontal1, SliderHorizontal11, type SliderHorizontal11Props, type SliderHorizontal1Props, SliderVertical1, SliderVertical11, type SliderVertical11Props, type SliderVertical1Props, SmartHome1, type SmartHome1Props, SmsEdit1, type SmsEdit1Props, SmsSearch1, type SmsSearch1Props, SmsStar1, type SmsStar1Props, SmsTracking1, type SmsTracking1Props, Sound1, type Sound1Props, Speedometer1, Speedometer11, type Speedometer11Props, type Speedometer1Props, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, StarTopology1, type StarTopology1Props, Status1, Status11, type Status11Props, type Status1Props, Strikethrough, type StrikethroughProps, Strongbox1, Strongbox11, type Strongbox11Props, type Strongbox1Props, Strongbox21, type Strongbox21Props, TagRight1, type TagRight1Props, Tasks, type TasksProps, Trash, type TrashProps, TrashSquare1, type TrashSquare1Props, Tree1, type Tree1Props, Truck1, Truck11, type Truck11Props, type Truck1Props, TruckFast1, type TruckFast1Props, TruckRemove1, type TruckRemove1Props, TruckTick1, type TruckTick1Props, TruckTime1, type TruckTime1Props, Video, type VideoProps, Wallet1, Wallet11, type Wallet11Props, type Wallet1Props, Wallet211, type Wallet211Props, X, type XProps };
|