magick-icons 0.1.227 → 0.1.229

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,1068 @@ 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 MagickoDirect icon component
7997
+ * @property {number | string} [size] - Size of the icon (default: 24)
7998
+ */
7999
+ interface MagickoDirectProps extends React.SVGProps<SVGSVGElement> {
8000
+ size?: number | string;
8001
+ }
8002
+ /**
8003
+ * MagickoDirect icon component
8004
+ * @example
8005
+ * ```tsx
8006
+ * import { MagickoDirect } from 'magick-icons';
8007
+ *
8008
+ * <MagickoDirect size={24} className="text-blue-500" strokeWidth={2} />
8009
+ * ```
8010
+ */
8011
+ declare const MagickoDirect: React.ForwardRefExoticComponent<Omit<MagickoDirectProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8012
+
8013
+ /**
8014
+ * Props for the MagickoDirectDown icon component
8015
+ * @property {number | string} [size] - Size of the icon (default: 24)
8016
+ */
8017
+ interface MagickoDirectDownProps extends React.SVGProps<SVGSVGElement> {
8018
+ size?: number | string;
8019
+ }
8020
+ /**
8021
+ * MagickoDirectDown icon component
8022
+ * @example
8023
+ * ```tsx
8024
+ * import { MagickoDirectDown } from 'magick-icons';
8025
+ *
8026
+ * <MagickoDirectDown size={24} className="text-blue-500" strokeWidth={2} />
8027
+ * ```
8028
+ */
8029
+ declare const MagickoDirectDown: React.ForwardRefExoticComponent<Omit<MagickoDirectDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8030
+
8031
+ /**
8032
+ * Props for the MagickoDirectInbox icon component
8033
+ * @property {number | string} [size] - Size of the icon (default: 24)
8034
+ */
8035
+ interface MagickoDirectInboxProps extends React.SVGProps<SVGSVGElement> {
8036
+ size?: number | string;
8037
+ }
8038
+ /**
8039
+ * MagickoDirectInbox icon component
8040
+ * @example
8041
+ * ```tsx
8042
+ * import { MagickoDirectInbox } from 'magick-icons';
8043
+ *
8044
+ * <MagickoDirectInbox size={24} className="text-blue-500" strokeWidth={2} />
8045
+ * ```
8046
+ */
8047
+ declare const MagickoDirectInbox: React.ForwardRefExoticComponent<Omit<MagickoDirectInboxProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8048
+
8049
+ /**
8050
+ * Props for the MagickoDirectLeft icon component
8051
+ * @property {number | string} [size] - Size of the icon (default: 24)
8052
+ */
8053
+ interface MagickoDirectLeftProps extends React.SVGProps<SVGSVGElement> {
8054
+ size?: number | string;
8055
+ }
8056
+ /**
8057
+ * MagickoDirectLeft icon component
8058
+ * @example
8059
+ * ```tsx
8060
+ * import { MagickoDirectLeft } from 'magick-icons';
8061
+ *
8062
+ * <MagickoDirectLeft size={24} className="text-blue-500" strokeWidth={2} />
8063
+ * ```
8064
+ */
8065
+ declare const MagickoDirectLeft: React.ForwardRefExoticComponent<Omit<MagickoDirectLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8066
+
8067
+ /**
8068
+ * Props for the MagickoDirectNormal icon component
8069
+ * @property {number | string} [size] - Size of the icon (default: 24)
8070
+ */
8071
+ interface MagickoDirectNormalProps extends React.SVGProps<SVGSVGElement> {
8072
+ size?: number | string;
8073
+ }
8074
+ /**
8075
+ * MagickoDirectNormal icon component
8076
+ * @example
8077
+ * ```tsx
8078
+ * import { MagickoDirectNormal } from 'magick-icons';
8079
+ *
8080
+ * <MagickoDirectNormal size={24} className="text-blue-500" strokeWidth={2} />
8081
+ * ```
8082
+ */
8083
+ declare const MagickoDirectNormal: React.ForwardRefExoticComponent<Omit<MagickoDirectNormalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8084
+
8085
+ /**
8086
+ * Props for the MagickoDirectNotification icon component
8087
+ * @property {number | string} [size] - Size of the icon (default: 24)
8088
+ */
8089
+ interface MagickoDirectNotificationProps extends React.SVGProps<SVGSVGElement> {
8090
+ size?: number | string;
8091
+ }
8092
+ /**
8093
+ * MagickoDirectNotification icon component
8094
+ * @example
8095
+ * ```tsx
8096
+ * import { MagickoDirectNotification } from 'magick-icons';
8097
+ *
8098
+ * <MagickoDirectNotification size={24} className="text-blue-500" strokeWidth={2} />
8099
+ * ```
8100
+ */
8101
+ declare const MagickoDirectNotification: React.ForwardRefExoticComponent<Omit<MagickoDirectNotificationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8102
+
8103
+ /**
8104
+ * Props for the MagickoDirectRight icon component
8105
+ * @property {number | string} [size] - Size of the icon (default: 24)
8106
+ */
8107
+ interface MagickoDirectRightProps extends React.SVGProps<SVGSVGElement> {
8108
+ size?: number | string;
8109
+ }
8110
+ /**
8111
+ * MagickoDirectRight icon component
8112
+ * @example
8113
+ * ```tsx
8114
+ * import { MagickoDirectRight } from 'magick-icons';
8115
+ *
8116
+ * <MagickoDirectRight size={24} className="text-blue-500" strokeWidth={2} />
8117
+ * ```
8118
+ */
8119
+ declare const MagickoDirectRight: React.ForwardRefExoticComponent<Omit<MagickoDirectRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8120
+
8121
+ /**
8122
+ * Props for the MagickoDirectSend icon component
8123
+ * @property {number | string} [size] - Size of the icon (default: 24)
8124
+ */
8125
+ interface MagickoDirectSendProps extends React.SVGProps<SVGSVGElement> {
8126
+ size?: number | string;
8127
+ }
8128
+ /**
8129
+ * MagickoDirectSend icon component
8130
+ * @example
8131
+ * ```tsx
8132
+ * import { MagickoDirectSend } from 'magick-icons';
8133
+ *
8134
+ * <MagickoDirectSend size={24} className="text-blue-500" strokeWidth={2} />
8135
+ * ```
8136
+ */
8137
+ declare const MagickoDirectSend: React.ForwardRefExoticComponent<Omit<MagickoDirectSendProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8138
+
8139
+ /**
8140
+ * Props for the MagickoDirectUp icon component
8141
+ * @property {number | string} [size] - Size of the icon (default: 24)
8142
+ */
8143
+ interface MagickoDirectUpProps extends React.SVGProps<SVGSVGElement> {
8144
+ size?: number | string;
8145
+ }
8146
+ /**
8147
+ * MagickoDirectUp icon component
8148
+ * @example
8149
+ * ```tsx
8150
+ * import { MagickoDirectUp } from 'magick-icons';
8151
+ *
8152
+ * <MagickoDirectUp size={24} className="text-blue-500" strokeWidth={2} />
8153
+ * ```
8154
+ */
8155
+ declare const MagickoDirectUp: React.ForwardRefExoticComponent<Omit<MagickoDirectUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8156
+
8157
+ /**
8158
+ * Props for the MagickoDirectboxDefault icon component
8159
+ * @property {number | string} [size] - Size of the icon (default: 24)
8160
+ */
8161
+ interface MagickoDirectboxDefaultProps extends React.SVGProps<SVGSVGElement> {
8162
+ size?: number | string;
8163
+ }
8164
+ /**
8165
+ * MagickoDirectboxDefault icon component
8166
+ * @example
8167
+ * ```tsx
8168
+ * import { MagickoDirectboxDefault } from 'magick-icons';
8169
+ *
8170
+ * <MagickoDirectboxDefault size={24} className="text-blue-500" strokeWidth={2} />
8171
+ * ```
8172
+ */
8173
+ declare const MagickoDirectboxDefault: React.ForwardRefExoticComponent<Omit<MagickoDirectboxDefaultProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8174
+
8175
+ /**
8176
+ * Props for the MagickoDirectboxNotif icon component
8177
+ * @property {number | string} [size] - Size of the icon (default: 24)
8178
+ */
8179
+ interface MagickoDirectboxNotifProps extends React.SVGProps<SVGSVGElement> {
8180
+ size?: number | string;
8181
+ }
8182
+ /**
8183
+ * MagickoDirectboxNotif icon component
8184
+ * @example
8185
+ * ```tsx
8186
+ * import { MagickoDirectboxNotif } from 'magick-icons';
8187
+ *
8188
+ * <MagickoDirectboxNotif size={24} className="text-blue-500" strokeWidth={2} />
8189
+ * ```
8190
+ */
8191
+ declare const MagickoDirectboxNotif: React.ForwardRefExoticComponent<Omit<MagickoDirectboxNotifProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8192
+
8193
+ /**
8194
+ * Props for the MagickoDirectboxReceive icon component
8195
+ * @property {number | string} [size] - Size of the icon (default: 24)
8196
+ */
8197
+ interface MagickoDirectboxReceiveProps extends React.SVGProps<SVGSVGElement> {
8198
+ size?: number | string;
8199
+ }
8200
+ /**
8201
+ * MagickoDirectboxReceive icon component
8202
+ * @example
8203
+ * ```tsx
8204
+ * import { MagickoDirectboxReceive } from 'magick-icons';
8205
+ *
8206
+ * <MagickoDirectboxReceive size={24} className="text-blue-500" strokeWidth={2} />
8207
+ * ```
8208
+ */
8209
+ declare const MagickoDirectboxReceive: React.ForwardRefExoticComponent<Omit<MagickoDirectboxReceiveProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8210
+
8211
+ /**
8212
+ * Props for the MagickoDirectboxSend icon component
8213
+ * @property {number | string} [size] - Size of the icon (default: 24)
8214
+ */
8215
+ interface MagickoDirectboxSendProps extends React.SVGProps<SVGSVGElement> {
8216
+ size?: number | string;
8217
+ }
8218
+ /**
8219
+ * MagickoDirectboxSend icon component
8220
+ * @example
8221
+ * ```tsx
8222
+ * import { MagickoDirectboxSend } from 'magick-icons';
8223
+ *
8224
+ * <MagickoDirectboxSend size={24} className="text-blue-500" strokeWidth={2} />
8225
+ * ```
8226
+ */
8227
+ declare const MagickoDirectboxSend: React.ForwardRefExoticComponent<Omit<MagickoDirectboxSendProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8228
+
8229
+ /**
8230
+ * Props for the MagickoDiscountCircle icon component
8231
+ * @property {number | string} [size] - Size of the icon (default: 24)
8232
+ */
8233
+ interface MagickoDiscountCircleProps extends React.SVGProps<SVGSVGElement> {
8234
+ size?: number | string;
8235
+ }
8236
+ /**
8237
+ * MagickoDiscountCircle icon component
8238
+ * @example
8239
+ * ```tsx
8240
+ * import { MagickoDiscountCircle } from 'magick-icons';
8241
+ *
8242
+ * <MagickoDiscountCircle size={24} className="text-blue-500" strokeWidth={2} />
8243
+ * ```
8244
+ */
8245
+ declare const MagickoDiscountCircle: React.ForwardRefExoticComponent<Omit<MagickoDiscountCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8246
+
8247
+ /**
8248
+ * Props for the MagickoDislike icon component
8249
+ * @property {number | string} [size] - Size of the icon (default: 24)
8250
+ */
8251
+ interface MagickoDislikeProps extends React.SVGProps<SVGSVGElement> {
8252
+ size?: number | string;
8253
+ }
8254
+ /**
8255
+ * MagickoDislike icon component
8256
+ * @example
8257
+ * ```tsx
8258
+ * import { MagickoDislike } from 'magick-icons';
8259
+ *
8260
+ * <MagickoDislike size={24} className="text-blue-500" strokeWidth={2} />
8261
+ * ```
8262
+ */
8263
+ declare const MagickoDislike: React.ForwardRefExoticComponent<Omit<MagickoDislikeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8264
+
8265
+ /**
8266
+ * Props for the MagickoDocument icon component
8267
+ * @property {number | string} [size] - Size of the icon (default: 24)
8268
+ */
8269
+ interface MagickoDocumentProps extends React.SVGProps<SVGSVGElement> {
8270
+ size?: number | string;
8271
+ }
8272
+ /**
8273
+ * MagickoDocument icon component
8274
+ * @example
8275
+ * ```tsx
8276
+ * import { MagickoDocument } from 'magick-icons';
8277
+ *
8278
+ * <MagickoDocument size={24} className="text-blue-500" strokeWidth={2} />
8279
+ * ```
8280
+ */
8281
+ declare const MagickoDocument: React.ForwardRefExoticComponent<Omit<MagickoDocumentProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8282
+
8283
+ /**
8284
+ * Props for the MagickoDocument1 icon component
8285
+ * @property {number | string} [size] - Size of the icon (default: 24)
8286
+ */
8287
+ interface MagickoDocument1Props extends React.SVGProps<SVGSVGElement> {
8288
+ size?: number | string;
8289
+ }
8290
+ /**
8291
+ * MagickoDocument1 icon component
8292
+ * @example
8293
+ * ```tsx
8294
+ * import { MagickoDocument1 } from 'magick-icons';
8295
+ *
8296
+ * <MagickoDocument1 size={24} className="text-blue-500" strokeWidth={2} />
8297
+ * ```
8298
+ */
8299
+ declare const MagickoDocument1: React.ForwardRefExoticComponent<Omit<MagickoDocument1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
8300
+
8301
+ /**
8302
+ * Props for the MagickoDocumentCloud icon component
8303
+ * @property {number | string} [size] - Size of the icon (default: 24)
8304
+ */
8305
+ interface MagickoDocumentCloudProps extends React.SVGProps<SVGSVGElement> {
8306
+ size?: number | string;
8307
+ }
8308
+ /**
8309
+ * MagickoDocumentCloud icon component
8310
+ * @example
8311
+ * ```tsx
8312
+ * import { MagickoDocumentCloud } from 'magick-icons';
8313
+ *
8314
+ * <MagickoDocumentCloud size={24} className="text-blue-500" strokeWidth={2} />
8315
+ * ```
8316
+ */
8317
+ declare const MagickoDocumentCloud: React.ForwardRefExoticComponent<Omit<MagickoDocumentCloudProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8318
+
8319
+ /**
8320
+ * Props for the MagickoDocumentCopy icon component
8321
+ * @property {number | string} [size] - Size of the icon (default: 24)
8322
+ */
8323
+ interface MagickoDocumentCopyProps extends React.SVGProps<SVGSVGElement> {
8324
+ size?: number | string;
8325
+ }
8326
+ /**
8327
+ * MagickoDocumentCopy icon component
8328
+ * @example
8329
+ * ```tsx
8330
+ * import { MagickoDocumentCopy } from 'magick-icons';
8331
+ *
8332
+ * <MagickoDocumentCopy size={24} className="text-blue-500" strokeWidth={2} />
8333
+ * ```
8334
+ */
8335
+ declare const MagickoDocumentCopy: React.ForwardRefExoticComponent<Omit<MagickoDocumentCopyProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8336
+
8337
+ /**
8338
+ * Props for the MagickoDocumentDownload icon component
8339
+ * @property {number | string} [size] - Size of the icon (default: 24)
8340
+ */
8341
+ interface MagickoDocumentDownloadProps extends React.SVGProps<SVGSVGElement> {
8342
+ size?: number | string;
8343
+ }
8344
+ /**
8345
+ * MagickoDocumentDownload icon component
8346
+ * @example
8347
+ * ```tsx
8348
+ * import { MagickoDocumentDownload } from 'magick-icons';
8349
+ *
8350
+ * <MagickoDocumentDownload size={24} className="text-blue-500" strokeWidth={2} />
8351
+ * ```
8352
+ */
8353
+ declare const MagickoDocumentDownload: React.ForwardRefExoticComponent<Omit<MagickoDocumentDownloadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8354
+
8355
+ /**
8356
+ * Props for the MagickoDocumentFavorite icon component
8357
+ * @property {number | string} [size] - Size of the icon (default: 24)
8358
+ */
8359
+ interface MagickoDocumentFavoriteProps extends React.SVGProps<SVGSVGElement> {
8360
+ size?: number | string;
8361
+ }
8362
+ /**
8363
+ * MagickoDocumentFavorite icon component
8364
+ * @example
8365
+ * ```tsx
8366
+ * import { MagickoDocumentFavorite } from 'magick-icons';
8367
+ *
8368
+ * <MagickoDocumentFavorite size={24} className="text-blue-500" strokeWidth={2} />
8369
+ * ```
8370
+ */
8371
+ declare const MagickoDocumentFavorite: React.ForwardRefExoticComponent<Omit<MagickoDocumentFavoriteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8372
+
8373
+ /**
8374
+ * Props for the MagickoDocumentFilter icon component
8375
+ * @property {number | string} [size] - Size of the icon (default: 24)
8376
+ */
8377
+ interface MagickoDocumentFilterProps extends React.SVGProps<SVGSVGElement> {
8378
+ size?: number | string;
8379
+ }
8380
+ /**
8381
+ * MagickoDocumentFilter icon component
8382
+ * @example
8383
+ * ```tsx
8384
+ * import { MagickoDocumentFilter } from 'magick-icons';
8385
+ *
8386
+ * <MagickoDocumentFilter size={24} className="text-blue-500" strokeWidth={2} />
8387
+ * ```
8388
+ */
8389
+ declare const MagickoDocumentFilter: React.ForwardRefExoticComponent<Omit<MagickoDocumentFilterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8390
+
8391
+ /**
8392
+ * Props for the MagickoDocumentForward icon component
8393
+ * @property {number | string} [size] - Size of the icon (default: 24)
8394
+ */
8395
+ interface MagickoDocumentForwardProps extends React.SVGProps<SVGSVGElement> {
8396
+ size?: number | string;
8397
+ }
8398
+ /**
8399
+ * MagickoDocumentForward icon component
8400
+ * @example
8401
+ * ```tsx
8402
+ * import { MagickoDocumentForward } from 'magick-icons';
8403
+ *
8404
+ * <MagickoDocumentForward size={24} className="text-blue-500" strokeWidth={2} />
8405
+ * ```
8406
+ */
8407
+ declare const MagickoDocumentForward: React.ForwardRefExoticComponent<Omit<MagickoDocumentForwardProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8408
+
8409
+ /**
8410
+ * Props for the MagickoDocumentLike icon component
8411
+ * @property {number | string} [size] - Size of the icon (default: 24)
8412
+ */
8413
+ interface MagickoDocumentLikeProps extends React.SVGProps<SVGSVGElement> {
8414
+ size?: number | string;
8415
+ }
8416
+ /**
8417
+ * MagickoDocumentLike icon component
8418
+ * @example
8419
+ * ```tsx
8420
+ * import { MagickoDocumentLike } from 'magick-icons';
8421
+ *
8422
+ * <MagickoDocumentLike size={24} className="text-blue-500" strokeWidth={2} />
8423
+ * ```
8424
+ */
8425
+ declare const MagickoDocumentLike: React.ForwardRefExoticComponent<Omit<MagickoDocumentLikeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8426
+
8427
+ /**
8428
+ * Props for the MagickoDocumentNormal icon component
8429
+ * @property {number | string} [size] - Size of the icon (default: 24)
8430
+ */
8431
+ interface MagickoDocumentNormalProps extends React.SVGProps<SVGSVGElement> {
8432
+ size?: number | string;
8433
+ }
8434
+ /**
8435
+ * MagickoDocumentNormal icon component
8436
+ * @example
8437
+ * ```tsx
8438
+ * import { MagickoDocumentNormal } from 'magick-icons';
8439
+ *
8440
+ * <MagickoDocumentNormal size={24} className="text-blue-500" strokeWidth={2} />
8441
+ * ```
8442
+ */
8443
+ declare const MagickoDocumentNormal: React.ForwardRefExoticComponent<Omit<MagickoDocumentNormalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8444
+
8445
+ /**
8446
+ * Props for the MagickoDocumentPrevious icon component
8447
+ * @property {number | string} [size] - Size of the icon (default: 24)
8448
+ */
8449
+ interface MagickoDocumentPreviousProps extends React.SVGProps<SVGSVGElement> {
8450
+ size?: number | string;
8451
+ }
8452
+ /**
8453
+ * MagickoDocumentPrevious icon component
8454
+ * @example
8455
+ * ```tsx
8456
+ * import { MagickoDocumentPrevious } from 'magick-icons';
8457
+ *
8458
+ * <MagickoDocumentPrevious size={24} className="text-blue-500" strokeWidth={2} />
8459
+ * ```
8460
+ */
8461
+ declare const MagickoDocumentPrevious: React.ForwardRefExoticComponent<Omit<MagickoDocumentPreviousProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8462
+
8463
+ /**
8464
+ * Props for the MagickoDocumentSketch icon component
8465
+ * @property {number | string} [size] - Size of the icon (default: 24)
8466
+ */
8467
+ interface MagickoDocumentSketchProps extends React.SVGProps<SVGSVGElement> {
8468
+ size?: number | string;
8469
+ }
8470
+ /**
8471
+ * MagickoDocumentSketch icon component
8472
+ * @example
8473
+ * ```tsx
8474
+ * import { MagickoDocumentSketch } from 'magick-icons';
8475
+ *
8476
+ * <MagickoDocumentSketch size={24} className="text-blue-500" strokeWidth={2} />
8477
+ * ```
8478
+ */
8479
+ declare const MagickoDocumentSketch: React.ForwardRefExoticComponent<Omit<MagickoDocumentSketchProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8480
+
8481
+ /**
8482
+ * Props for the MagickoDocumentText icon component
8483
+ * @property {number | string} [size] - Size of the icon (default: 24)
8484
+ */
8485
+ interface MagickoDocumentTextProps extends React.SVGProps<SVGSVGElement> {
8486
+ size?: number | string;
8487
+ }
8488
+ /**
8489
+ * MagickoDocumentText icon component
8490
+ * @example
8491
+ * ```tsx
8492
+ * import { MagickoDocumentText } from 'magick-icons';
8493
+ *
8494
+ * <MagickoDocumentText size={24} className="text-blue-500" strokeWidth={2} />
8495
+ * ```
8496
+ */
8497
+ declare const MagickoDocumentText: React.ForwardRefExoticComponent<Omit<MagickoDocumentTextProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8498
+
8499
+ /**
8500
+ * Props for the MagickoDocumentText2 icon component
8501
+ * @property {number | string} [size] - Size of the icon (default: 24)
8502
+ */
8503
+ interface MagickoDocumentText2Props extends React.SVGProps<SVGSVGElement> {
8504
+ size?: number | string;
8505
+ }
8506
+ /**
8507
+ * MagickoDocumentText2 icon component
8508
+ * @example
8509
+ * ```tsx
8510
+ * import { MagickoDocumentText2 } from 'magick-icons';
8511
+ *
8512
+ * <MagickoDocumentText2 size={24} className="text-blue-500" strokeWidth={2} />
8513
+ * ```
8514
+ */
8515
+ declare const MagickoDocumentText2: React.ForwardRefExoticComponent<Omit<MagickoDocumentText2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
8516
+
8517
+ /**
8518
+ * Props for the MagickoDocumentUpload icon component
8519
+ * @property {number | string} [size] - Size of the icon (default: 24)
8520
+ */
8521
+ interface MagickoDocumentUploadProps extends React.SVGProps<SVGSVGElement> {
8522
+ size?: number | string;
8523
+ }
8524
+ /**
8525
+ * MagickoDocumentUpload icon component
8526
+ * @example
8527
+ * ```tsx
8528
+ * import { MagickoDocumentUpload } from 'magick-icons';
8529
+ *
8530
+ * <MagickoDocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
8531
+ * ```
8532
+ */
8533
+ declare const MagickoDocumentUpload: React.ForwardRefExoticComponent<Omit<MagickoDocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8534
+
8535
+ /**
8536
+ * Props for the MagickoDollarCircle icon component
8537
+ * @property {number | string} [size] - Size of the icon (default: 24)
8538
+ */
8539
+ interface MagickoDollarCircleProps extends React.SVGProps<SVGSVGElement> {
8540
+ size?: number | string;
8541
+ }
8542
+ /**
8543
+ * MagickoDollarCircle icon component
8544
+ * @example
8545
+ * ```tsx
8546
+ * import { MagickoDollarCircle } from 'magick-icons';
8547
+ *
8548
+ * <MagickoDollarCircle size={24} className="text-blue-500" strokeWidth={2} />
8549
+ * ```
8550
+ */
8551
+ declare const MagickoDollarCircle: React.ForwardRefExoticComponent<Omit<MagickoDollarCircleProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
8552
+
7473
8553
  /**
7474
8554
  * Props for the Marketing icon component
7475
8555
  * @property {number | string} [size] - Size of the icon (default: 24)
@@ -7758,4 +8838,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
7758
8838
  */
7759
8839
  declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
7760
8840
 
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 };
8841
+ 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, 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 };