magick-icons 0.1.227 → 0.1.228

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 CHANGED
@@ -7290,6 +7290,24 @@ interface MagickoCloseSquareProps extends React.SVGProps<SVGSVGElement> {
7290
7290
  */
7291
7291
  declare const MagickoCloseSquare: React.ForwardRefExoticComponent<Omit<MagickoCloseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7292
7292
 
7293
+ /**
7294
+ * Props for the MagickoCloud icon component
7295
+ * @property {number | string} [size] - Size of the icon (default: 24)
7296
+ */
7297
+ interface MagickoCloudProps extends React.SVGProps<SVGSVGElement> {
7298
+ size?: number | string;
7299
+ }
7300
+ /**
7301
+ * MagickoCloud icon component
7302
+ * @example
7303
+ * ```tsx
7304
+ * import { MagickoCloud } from 'magick-icons';
7305
+ *
7306
+ * <MagickoCloud size={24} className="text-blue-500" strokeWidth={2} />
7307
+ * ```
7308
+ */
7309
+ declare const MagickoCloud: React.ForwardRefExoticComponent<Omit<MagickoCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7310
+
7293
7311
  /**
7294
7312
  * Props for the MagickoCloud1 icon component
7295
7313
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -7470,6 +7488,528 @@ interface MagickoCloudNotifProps extends React.SVGProps<SVGSVGElement> {
7470
7488
  */
7471
7489
  declare const MagickoCloudNotif: React.ForwardRefExoticComponent<Omit<MagickoCloudNotifProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7472
7490
 
7491
+ /**
7492
+ * Props for the MagickoCloudPlus icon component
7493
+ * @property {number | string} [size] - Size of the icon (default: 24)
7494
+ */
7495
+ interface MagickoCloudPlusProps extends React.SVGProps<SVGSVGElement> {
7496
+ size?: number | string;
7497
+ }
7498
+ /**
7499
+ * MagickoCloudPlus icon component
7500
+ * @example
7501
+ * ```tsx
7502
+ * import { MagickoCloudPlus } from 'magick-icons';
7503
+ *
7504
+ * <MagickoCloudPlus size={24} className="text-blue-500" strokeWidth={2} />
7505
+ * ```
7506
+ */
7507
+ declare const MagickoCloudPlus: React.ForwardRefExoticComponent<Omit<MagickoCloudPlusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7508
+
7509
+ /**
7510
+ * Props for the MagickoCloudRemove icon component
7511
+ * @property {number | string} [size] - Size of the icon (default: 24)
7512
+ */
7513
+ interface MagickoCloudRemoveProps extends React.SVGProps<SVGSVGElement> {
7514
+ size?: number | string;
7515
+ }
7516
+ /**
7517
+ * MagickoCloudRemove icon component
7518
+ * @example
7519
+ * ```tsx
7520
+ * import { MagickoCloudRemove } from 'magick-icons';
7521
+ *
7522
+ * <MagickoCloudRemove size={24} className="text-blue-500" strokeWidth={2} />
7523
+ * ```
7524
+ */
7525
+ declare const MagickoCloudRemove: React.ForwardRefExoticComponent<Omit<MagickoCloudRemoveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7526
+
7527
+ /**
7528
+ * Props for the MagickoCloudSnow icon component
7529
+ * @property {number | string} [size] - Size of the icon (default: 24)
7530
+ */
7531
+ interface MagickoCloudSnowProps extends React.SVGProps<SVGSVGElement> {
7532
+ size?: number | string;
7533
+ }
7534
+ /**
7535
+ * MagickoCloudSnow icon component
7536
+ * @example
7537
+ * ```tsx
7538
+ * import { MagickoCloudSnow } from 'magick-icons';
7539
+ *
7540
+ * <MagickoCloudSnow size={24} className="text-blue-500" strokeWidth={2} />
7541
+ * ```
7542
+ */
7543
+ declare const MagickoCloudSnow: React.ForwardRefExoticComponent<Omit<MagickoCloudSnowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7544
+
7545
+ /**
7546
+ * Props for the MagickoCloudSunny icon component
7547
+ * @property {number | string} [size] - Size of the icon (default: 24)
7548
+ */
7549
+ interface MagickoCloudSunnyProps extends React.SVGProps<SVGSVGElement> {
7550
+ size?: number | string;
7551
+ }
7552
+ /**
7553
+ * MagickoCloudSunny icon component
7554
+ * @example
7555
+ * ```tsx
7556
+ * import { MagickoCloudSunny } from 'magick-icons';
7557
+ *
7558
+ * <MagickoCloudSunny size={24} className="text-blue-500" strokeWidth={2} />
7559
+ * ```
7560
+ */
7561
+ declare const MagickoCloudSunny: React.ForwardRefExoticComponent<Omit<MagickoCloudSunnyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7562
+
7563
+ /**
7564
+ * Props for the MagickoCloudWarning icon component
7565
+ * @property {number | string} [size] - Size of the icon (default: 24)
7566
+ */
7567
+ interface MagickoCloudWarningProps extends React.SVGProps<SVGSVGElement> {
7568
+ size?: number | string;
7569
+ }
7570
+ /**
7571
+ * MagickoCloudWarning icon component
7572
+ * @example
7573
+ * ```tsx
7574
+ * import { MagickoCloudWarning } from 'magick-icons';
7575
+ *
7576
+ * <MagickoCloudWarning size={24} className="text-blue-500" strokeWidth={2} />
7577
+ * ```
7578
+ */
7579
+ declare const MagickoCloudWarning: React.ForwardRefExoticComponent<Omit<MagickoCloudWarningProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7580
+
7581
+ /**
7582
+ * Props for the MagickoCoin icon component
7583
+ * @property {number | string} [size] - Size of the icon (default: 24)
7584
+ */
7585
+ interface MagickoCoinProps extends React.SVGProps<SVGSVGElement> {
7586
+ size?: number | string;
7587
+ }
7588
+ /**
7589
+ * MagickoCoin icon component
7590
+ * @example
7591
+ * ```tsx
7592
+ * import { MagickoCoin } from 'magick-icons';
7593
+ *
7594
+ * <MagickoCoin size={24} className="text-blue-500" strokeWidth={2} />
7595
+ * ```
7596
+ */
7597
+ declare const MagickoCoin: React.ForwardRefExoticComponent<Omit<MagickoCoinProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7598
+
7599
+ /**
7600
+ * Props for the MagickoCoin1 icon component
7601
+ * @property {number | string} [size] - Size of the icon (default: 24)
7602
+ */
7603
+ interface MagickoCoin1Props extends React.SVGProps<SVGSVGElement> {
7604
+ size?: number | string;
7605
+ }
7606
+ /**
7607
+ * MagickoCoin1 icon component
7608
+ * @example
7609
+ * ```tsx
7610
+ * import { MagickoCoin1 } from 'magick-icons';
7611
+ *
7612
+ * <MagickoCoin1 size={24} className="text-blue-500" strokeWidth={2} />
7613
+ * ```
7614
+ */
7615
+ declare const MagickoCoin1: React.ForwardRefExoticComponent<Omit<MagickoCoin1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7616
+
7617
+ /**
7618
+ * Props for the MagickoCoin11 icon component
7619
+ * @property {number | string} [size] - Size of the icon (default: 24)
7620
+ */
7621
+ interface MagickoCoin11Props extends React.SVGProps<SVGSVGElement> {
7622
+ size?: number | string;
7623
+ }
7624
+ /**
7625
+ * MagickoCoin11 icon component
7626
+ * @example
7627
+ * ```tsx
7628
+ * import { MagickoCoin11 } from 'magick-icons';
7629
+ *
7630
+ * <MagickoCoin11 size={24} className="text-blue-500" strokeWidth={2} />
7631
+ * ```
7632
+ */
7633
+ declare const MagickoCoin11: React.ForwardRefExoticComponent<Omit<MagickoCoin11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7634
+
7635
+ /**
7636
+ * Props for the MagickoConversationBox icon component
7637
+ * @property {number | string} [size] - Size of the icon (default: 24)
7638
+ */
7639
+ interface MagickoConversationBoxProps extends React.SVGProps<SVGSVGElement> {
7640
+ size?: number | string;
7641
+ }
7642
+ /**
7643
+ * MagickoConversationBox icon component
7644
+ * @example
7645
+ * ```tsx
7646
+ * import { MagickoConversationBox } from 'magick-icons';
7647
+ *
7648
+ * <MagickoConversationBox size={24} className="text-blue-500" strokeWidth={2} />
7649
+ * ```
7650
+ */
7651
+ declare const MagickoConversationBox: React.ForwardRefExoticComponent<Omit<MagickoConversationBoxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7652
+
7653
+ /**
7654
+ * Props for the MagickoConvertArrow icon component
7655
+ * @property {number | string} [size] - Size of the icon (default: 24)
7656
+ */
7657
+ interface MagickoConvertArrowProps extends React.SVGProps<SVGSVGElement> {
7658
+ size?: number | string;
7659
+ }
7660
+ /**
7661
+ * MagickoConvertArrow icon component
7662
+ * @example
7663
+ * ```tsx
7664
+ * import { MagickoConvertArrow } from 'magick-icons';
7665
+ *
7666
+ * <MagickoConvertArrow size={24} className="text-blue-500" strokeWidth={2} />
7667
+ * ```
7668
+ */
7669
+ declare const MagickoConvertArrow: React.ForwardRefExoticComponent<Omit<MagickoConvertArrowProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7670
+
7671
+ /**
7672
+ * Props for the MagickoCopy icon component
7673
+ * @property {number | string} [size] - Size of the icon (default: 24)
7674
+ */
7675
+ interface MagickoCopyProps extends React.SVGProps<SVGSVGElement> {
7676
+ size?: number | string;
7677
+ }
7678
+ /**
7679
+ * MagickoCopy icon component
7680
+ * @example
7681
+ * ```tsx
7682
+ * import { MagickoCopy } from 'magick-icons';
7683
+ *
7684
+ * <MagickoCopy size={24} className="text-blue-500" strokeWidth={2} />
7685
+ * ```
7686
+ */
7687
+ declare const MagickoCopy: React.ForwardRefExoticComponent<Omit<MagickoCopyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7688
+
7689
+ /**
7690
+ * Props for the MagickoCopySuccess icon component
7691
+ * @property {number | string} [size] - Size of the icon (default: 24)
7692
+ */
7693
+ interface MagickoCopySuccessProps extends React.SVGProps<SVGSVGElement> {
7694
+ size?: number | string;
7695
+ }
7696
+ /**
7697
+ * MagickoCopySuccess icon component
7698
+ * @example
7699
+ * ```tsx
7700
+ * import { MagickoCopySuccess } from 'magick-icons';
7701
+ *
7702
+ * <MagickoCopySuccess size={24} className="text-blue-500" strokeWidth={2} />
7703
+ * ```
7704
+ */
7705
+ declare const MagickoCopySuccess: React.ForwardRefExoticComponent<Omit<MagickoCopySuccessProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7706
+
7707
+ /**
7708
+ * Props for the MagickoCopyright icon component
7709
+ * @property {number | string} [size] - Size of the icon (default: 24)
7710
+ */
7711
+ interface MagickoCopyrightProps extends React.SVGProps<SVGSVGElement> {
7712
+ size?: number | string;
7713
+ }
7714
+ /**
7715
+ * MagickoCopyright icon component
7716
+ * @example
7717
+ * ```tsx
7718
+ * import { MagickoCopyright } from 'magick-icons';
7719
+ *
7720
+ * <MagickoCopyright size={24} className="text-blue-500" strokeWidth={2} />
7721
+ * ```
7722
+ */
7723
+ declare const MagickoCopyright: React.ForwardRefExoticComponent<Omit<MagickoCopyrightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7724
+
7725
+ /**
7726
+ * Props for the MagickoCopyright1 icon component
7727
+ * @property {number | string} [size] - Size of the icon (default: 24)
7728
+ */
7729
+ interface MagickoCopyright1Props extends React.SVGProps<SVGSVGElement> {
7730
+ size?: number | string;
7731
+ }
7732
+ /**
7733
+ * MagickoCopyright1 icon component
7734
+ * @example
7735
+ * ```tsx
7736
+ * import { MagickoCopyright1 } from 'magick-icons';
7737
+ *
7738
+ * <MagickoCopyright1 size={24} className="text-blue-500" strokeWidth={2} />
7739
+ * ```
7740
+ */
7741
+ declare const MagickoCopyright1: React.ForwardRefExoticComponent<Omit<MagickoCopyright1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7742
+
7743
+ /**
7744
+ * Props for the MagickoCopyright2 icon component
7745
+ * @property {number | string} [size] - Size of the icon (default: 24)
7746
+ */
7747
+ interface MagickoCopyright2Props extends React.SVGProps<SVGSVGElement> {
7748
+ size?: number | string;
7749
+ }
7750
+ /**
7751
+ * MagickoCopyright2 icon component
7752
+ * @example
7753
+ * ```tsx
7754
+ * import { MagickoCopyright2 } from 'magick-icons';
7755
+ *
7756
+ * <MagickoCopyright2 size={24} className="text-blue-500" strokeWidth={2} />
7757
+ * ```
7758
+ */
7759
+ declare const MagickoCopyright2: React.ForwardRefExoticComponent<Omit<MagickoCopyright2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7760
+
7761
+ /**
7762
+ * Props for the MagickoCopyright3 icon component
7763
+ * @property {number | string} [size] - Size of the icon (default: 24)
7764
+ */
7765
+ interface MagickoCopyright3Props extends React.SVGProps<SVGSVGElement> {
7766
+ size?: number | string;
7767
+ }
7768
+ /**
7769
+ * MagickoCopyright3 icon component
7770
+ * @example
7771
+ * ```tsx
7772
+ * import { MagickoCopyright3 } from 'magick-icons';
7773
+ *
7774
+ * <MagickoCopyright3 size={24} className="text-blue-500" strokeWidth={2} />
7775
+ * ```
7776
+ */
7777
+ declare const MagickoCopyright3: React.ForwardRefExoticComponent<Omit<MagickoCopyright3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7778
+
7779
+ /**
7780
+ * Props for the MagickoCopyright4 icon component
7781
+ * @property {number | string} [size] - Size of the icon (default: 24)
7782
+ */
7783
+ interface MagickoCopyright4Props extends React.SVGProps<SVGSVGElement> {
7784
+ size?: number | string;
7785
+ }
7786
+ /**
7787
+ * MagickoCopyright4 icon component
7788
+ * @example
7789
+ * ```tsx
7790
+ * import { MagickoCopyright4 } from 'magick-icons';
7791
+ *
7792
+ * <MagickoCopyright4 size={24} className="text-blue-500" strokeWidth={2} />
7793
+ * ```
7794
+ */
7795
+ declare const MagickoCopyright4: React.ForwardRefExoticComponent<Omit<MagickoCopyright4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7796
+
7797
+ /**
7798
+ * Props for the MagickoCourthouse icon component
7799
+ * @property {number | string} [size] - Size of the icon (default: 24)
7800
+ */
7801
+ interface MagickoCourthouseProps extends React.SVGProps<SVGSVGElement> {
7802
+ size?: number | string;
7803
+ }
7804
+ /**
7805
+ * MagickoCourthouse icon component
7806
+ * @example
7807
+ * ```tsx
7808
+ * import { MagickoCourthouse } from 'magick-icons';
7809
+ *
7810
+ * <MagickoCourthouse size={24} className="text-blue-500" strokeWidth={2} />
7811
+ * ```
7812
+ */
7813
+ declare const MagickoCourthouse: React.ForwardRefExoticComponent<Omit<MagickoCourthouseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7814
+
7815
+ /**
7816
+ * Props for the MagickoCpu icon component
7817
+ * @property {number | string} [size] - Size of the icon (default: 24)
7818
+ */
7819
+ interface MagickoCpuProps extends React.SVGProps<SVGSVGElement> {
7820
+ size?: number | string;
7821
+ }
7822
+ /**
7823
+ * MagickoCpu icon component
7824
+ * @example
7825
+ * ```tsx
7826
+ * import { MagickoCpu } from 'magick-icons';
7827
+ *
7828
+ * <MagickoCpu size={24} className="text-blue-500" strokeWidth={2} />
7829
+ * ```
7830
+ */
7831
+ declare const MagickoCpu: React.ForwardRefExoticComponent<Omit<MagickoCpuProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7832
+
7833
+ /**
7834
+ * Props for the MagickoCpu1 icon component
7835
+ * @property {number | string} [size] - Size of the icon (default: 24)
7836
+ */
7837
+ interface MagickoCpu1Props extends React.SVGProps<SVGSVGElement> {
7838
+ size?: number | string;
7839
+ }
7840
+ /**
7841
+ * MagickoCpu1 icon component
7842
+ * @example
7843
+ * ```tsx
7844
+ * import { MagickoCpu1 } from 'magick-icons';
7845
+ *
7846
+ * <MagickoCpu1 size={24} className="text-blue-500" strokeWidth={2} />
7847
+ * ```
7848
+ */
7849
+ declare const MagickoCpu1: React.ForwardRefExoticComponent<Omit<MagickoCpu1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7850
+
7851
+ /**
7852
+ * Props for the MagickoCpuCharge icon component
7853
+ * @property {number | string} [size] - Size of the icon (default: 24)
7854
+ */
7855
+ interface MagickoCpuChargeProps extends React.SVGProps<SVGSVGElement> {
7856
+ size?: number | string;
7857
+ }
7858
+ /**
7859
+ * MagickoCpuCharge icon component
7860
+ * @example
7861
+ * ```tsx
7862
+ * import { MagickoCpuCharge } from 'magick-icons';
7863
+ *
7864
+ * <MagickoCpuCharge size={24} className="text-blue-500" strokeWidth={2} />
7865
+ * ```
7866
+ */
7867
+ declare const MagickoCpuCharge: React.ForwardRefExoticComponent<Omit<MagickoCpuChargeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7868
+
7869
+ /**
7870
+ * Props for the MagickoCpuSetting icon component
7871
+ * @property {number | string} [size] - Size of the icon (default: 24)
7872
+ */
7873
+ interface MagickoCpuSettingProps extends React.SVGProps<SVGSVGElement> {
7874
+ size?: number | string;
7875
+ }
7876
+ /**
7877
+ * MagickoCpuSetting icon component
7878
+ * @example
7879
+ * ```tsx
7880
+ * import { MagickoCpuSetting } from 'magick-icons';
7881
+ *
7882
+ * <MagickoCpuSetting size={24} className="text-blue-500" strokeWidth={2} />
7883
+ * ```
7884
+ */
7885
+ declare const MagickoCpuSetting: React.ForwardRefExoticComponent<Omit<MagickoCpuSettingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7886
+
7887
+ /**
7888
+ * Props for the MagickoCreativeCommons icon component
7889
+ * @property {number | string} [size] - Size of the icon (default: 24)
7890
+ */
7891
+ interface MagickoCreativeCommonsProps extends React.SVGProps<SVGSVGElement> {
7892
+ size?: number | string;
7893
+ }
7894
+ /**
7895
+ * MagickoCreativeCommons icon component
7896
+ * @example
7897
+ * ```tsx
7898
+ * import { MagickoCreativeCommons } from 'magick-icons';
7899
+ *
7900
+ * <MagickoCreativeCommons size={24} className="text-blue-500" strokeWidth={2} />
7901
+ * ```
7902
+ */
7903
+ declare const MagickoCreativeCommons: React.ForwardRefExoticComponent<Omit<MagickoCreativeCommonsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7904
+
7905
+ /**
7906
+ * Props for the MagickoCreativeCommons1 icon component
7907
+ * @property {number | string} [size] - Size of the icon (default: 24)
7908
+ */
7909
+ interface MagickoCreativeCommons1Props extends React.SVGProps<SVGSVGElement> {
7910
+ size?: number | string;
7911
+ }
7912
+ /**
7913
+ * MagickoCreativeCommons1 icon component
7914
+ * @example
7915
+ * ```tsx
7916
+ * import { MagickoCreativeCommons1 } from 'magick-icons';
7917
+ *
7918
+ * <MagickoCreativeCommons1 size={24} className="text-blue-500" strokeWidth={2} />
7919
+ * ```
7920
+ */
7921
+ declare const MagickoCreativeCommons1: React.ForwardRefExoticComponent<Omit<MagickoCreativeCommons1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7922
+
7923
+ /**
7924
+ * Props for the MagickoDecreaseCloud icon component
7925
+ * @property {number | string} [size] - Size of the icon (default: 24)
7926
+ */
7927
+ interface MagickoDecreaseCloudProps extends React.SVGProps<SVGSVGElement> {
7928
+ size?: number | string;
7929
+ }
7930
+ /**
7931
+ * MagickoDecreaseCloud icon component
7932
+ * @example
7933
+ * ```tsx
7934
+ * import { MagickoDecreaseCloud } from 'magick-icons';
7935
+ *
7936
+ * <MagickoDecreaseCloud size={24} className="text-blue-500" strokeWidth={2} />
7937
+ * ```
7938
+ */
7939
+ declare const MagickoDecreaseCloud: React.ForwardRefExoticComponent<Omit<MagickoDecreaseCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7940
+
7941
+ /**
7942
+ * Props for the MagickoDevices icon component
7943
+ * @property {number | string} [size] - Size of the icon (default: 24)
7944
+ */
7945
+ interface MagickoDevicesProps extends React.SVGProps<SVGSVGElement> {
7946
+ size?: number | string;
7947
+ }
7948
+ /**
7949
+ * MagickoDevices icon component
7950
+ * @example
7951
+ * ```tsx
7952
+ * import { MagickoDevices } from 'magick-icons';
7953
+ *
7954
+ * <MagickoDevices size={24} className="text-blue-500" strokeWidth={2} />
7955
+ * ```
7956
+ */
7957
+ declare const MagickoDevices: React.ForwardRefExoticComponent<Omit<MagickoDevicesProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7958
+
7959
+ /**
7960
+ * Props for the MagickoDevices1 icon component
7961
+ * @property {number | string} [size] - Size of the icon (default: 24)
7962
+ */
7963
+ interface MagickoDevices1Props extends React.SVGProps<SVGSVGElement> {
7964
+ size?: number | string;
7965
+ }
7966
+ /**
7967
+ * MagickoDevices1 icon component
7968
+ * @example
7969
+ * ```tsx
7970
+ * import { MagickoDevices1 } from 'magick-icons';
7971
+ *
7972
+ * <MagickoDevices1 size={24} className="text-blue-500" strokeWidth={2} />
7973
+ * ```
7974
+ */
7975
+ declare const MagickoDevices1: React.ForwardRefExoticComponent<Omit<MagickoDevices1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
7976
+
7977
+ /**
7978
+ * Props for the MagickoDiagram icon component
7979
+ * @property {number | string} [size] - Size of the icon (default: 24)
7980
+ */
7981
+ interface MagickoDiagramProps extends React.SVGProps<SVGSVGElement> {
7982
+ size?: number | string;
7983
+ }
7984
+ /**
7985
+ * MagickoDiagram icon component
7986
+ * @example
7987
+ * ```tsx
7988
+ * import { MagickoDiagram } from 'magick-icons';
7989
+ *
7990
+ * <MagickoDiagram size={24} className="text-blue-500" strokeWidth={2} />
7991
+ * ```
7992
+ */
7993
+ declare const MagickoDiagram: React.ForwardRefExoticComponent<Omit<MagickoDiagramProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7994
+
7995
+ /**
7996
+ * Props for the MagickoDirectDown icon component
7997
+ * @property {number | string} [size] - Size of the icon (default: 24)
7998
+ */
7999
+ interface MagickoDirectDownProps extends React.SVGProps<SVGSVGElement> {
8000
+ size?: number | string;
8001
+ }
8002
+ /**
8003
+ * MagickoDirectDown icon component
8004
+ * @example
8005
+ * ```tsx
8006
+ * import { MagickoDirectDown } from 'magick-icons';
8007
+ *
8008
+ * <MagickoDirectDown size={24} className="text-blue-500" strokeWidth={2} />
8009
+ * ```
8010
+ */
8011
+ declare const MagickoDirectDown: React.ForwardRefExoticComponent<Omit<MagickoDirectDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8012
+
7473
8013
  /**
7474
8014
  * Props for the Marketing icon component
7475
8015
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -7758,4 +8298,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
7758
8298
  */
7759
8299
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7760
8300
 
7761
- 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, 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, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
8301
+ 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, MagickoDirectDown, type MagickoDirectDownProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };