magick-icons 0.1.190 → 0.1.192
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 +181 -73
- package/index.d.ts +181 -73
- package/index.js +189 -114
- package/index.js.map +1 -1
- package/index.mjs +183 -114
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/README.md +0 -116
package/index.d.ts
CHANGED
|
@@ -630,24 +630,6 @@ interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
|
630
630
|
*/
|
|
631
631
|
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
632
632
|
|
|
633
|
-
/**
|
|
634
|
-
* Props for the IconsaxAiScienceBold icon component
|
|
635
|
-
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
636
|
-
*/
|
|
637
|
-
interface IconsaxAiScienceBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
638
|
-
size?: number | string;
|
|
639
|
-
}
|
|
640
|
-
/**
|
|
641
|
-
* IconsaxAiScienceBold icon component
|
|
642
|
-
* @example
|
|
643
|
-
* ```tsx
|
|
644
|
-
* import { IconsaxAiScienceBold } from 'magick-icons';
|
|
645
|
-
*
|
|
646
|
-
* <IconsaxAiScienceBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
647
|
-
* ```
|
|
648
|
-
*/
|
|
649
|
-
declare const IconsaxAiScienceBold: React.ForwardRefExoticComponent<Omit<IconsaxAiScienceBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
650
|
-
|
|
651
633
|
/**
|
|
652
634
|
* Props for the IconsaxAttachCircleBold icon component
|
|
653
635
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -667,166 +649,166 @@ interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
|
667
649
|
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
668
650
|
|
|
669
651
|
/**
|
|
670
|
-
* Props for the
|
|
652
|
+
* Props for the IconsaxPenBrushBold icon component
|
|
671
653
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
672
654
|
*/
|
|
673
|
-
interface
|
|
655
|
+
interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
674
656
|
size?: number | string;
|
|
675
657
|
}
|
|
676
658
|
/**
|
|
677
|
-
*
|
|
659
|
+
* IconsaxPenBrushBold icon component
|
|
678
660
|
* @example
|
|
679
661
|
* ```tsx
|
|
680
|
-
* import {
|
|
662
|
+
* import { IconsaxPenBrushBold } from 'magick-icons';
|
|
681
663
|
*
|
|
682
|
-
* <
|
|
664
|
+
* <IconsaxPenBrushBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
683
665
|
* ```
|
|
684
666
|
*/
|
|
685
|
-
declare const
|
|
667
|
+
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
686
668
|
|
|
687
669
|
/**
|
|
688
|
-
* Props for the
|
|
670
|
+
* Props for the IconsaxVideoCameraBold icon component
|
|
689
671
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
690
672
|
*/
|
|
691
|
-
interface
|
|
673
|
+
interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
692
674
|
size?: number | string;
|
|
693
675
|
}
|
|
694
676
|
/**
|
|
695
|
-
*
|
|
677
|
+
* IconsaxVideoCameraBold icon component
|
|
696
678
|
* @example
|
|
697
679
|
* ```tsx
|
|
698
|
-
* import {
|
|
680
|
+
* import { IconsaxVideoCameraBold } from 'magick-icons';
|
|
699
681
|
*
|
|
700
|
-
* <
|
|
682
|
+
* <IconsaxVideoCameraBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
701
683
|
* ```
|
|
702
684
|
*/
|
|
703
|
-
declare const
|
|
685
|
+
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
704
686
|
|
|
705
687
|
/**
|
|
706
|
-
* Props for the
|
|
688
|
+
* Props for the IconsaxWord icon component
|
|
707
689
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
708
690
|
*/
|
|
709
|
-
interface
|
|
691
|
+
interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
710
692
|
size?: number | string;
|
|
711
693
|
}
|
|
712
694
|
/**
|
|
713
|
-
*
|
|
695
|
+
* IconsaxWord icon component
|
|
714
696
|
* @example
|
|
715
697
|
* ```tsx
|
|
716
|
-
* import {
|
|
698
|
+
* import { IconsaxWord } from 'magick-icons';
|
|
717
699
|
*
|
|
718
|
-
* <
|
|
700
|
+
* <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
|
|
719
701
|
* ```
|
|
720
702
|
*/
|
|
721
|
-
declare const
|
|
703
|
+
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
722
704
|
|
|
723
705
|
/**
|
|
724
|
-
* Props for the
|
|
706
|
+
* Props for the InProgress icon component
|
|
725
707
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
726
708
|
*/
|
|
727
|
-
interface
|
|
709
|
+
interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
728
710
|
size?: number | string;
|
|
729
711
|
}
|
|
730
712
|
/**
|
|
731
|
-
*
|
|
713
|
+
* InProgress icon component
|
|
732
714
|
* @example
|
|
733
715
|
* ```tsx
|
|
734
|
-
* import {
|
|
716
|
+
* import { InProgress } from 'magick-icons';
|
|
735
717
|
*
|
|
736
|
-
* <
|
|
718
|
+
* <InProgress size={24} className="text-blue-500" strokeWidth={2} />
|
|
737
719
|
* ```
|
|
738
720
|
*/
|
|
739
|
-
declare const
|
|
721
|
+
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
740
722
|
|
|
741
723
|
/**
|
|
742
|
-
* Props for the
|
|
724
|
+
* Props for the InfoCircleBold icon component
|
|
743
725
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
744
726
|
*/
|
|
745
|
-
interface
|
|
727
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
746
728
|
size?: number | string;
|
|
747
729
|
}
|
|
748
730
|
/**
|
|
749
|
-
*
|
|
731
|
+
* InfoCircleBold icon component
|
|
750
732
|
* @example
|
|
751
733
|
* ```tsx
|
|
752
|
-
* import {
|
|
734
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
753
735
|
*
|
|
754
|
-
* <
|
|
736
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
755
737
|
* ```
|
|
756
738
|
*/
|
|
757
|
-
declare const
|
|
739
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
758
740
|
|
|
759
741
|
/**
|
|
760
|
-
* Props for the
|
|
742
|
+
* Props for the Legal icon component
|
|
761
743
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
762
744
|
*/
|
|
763
|
-
interface
|
|
745
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
764
746
|
size?: number | string;
|
|
765
747
|
}
|
|
766
748
|
/**
|
|
767
|
-
*
|
|
749
|
+
* Legal icon component
|
|
768
750
|
* @example
|
|
769
751
|
* ```tsx
|
|
770
|
-
* import {
|
|
752
|
+
* import { Legal } from 'magick-icons';
|
|
771
753
|
*
|
|
772
|
-
* <
|
|
754
|
+
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
773
755
|
* ```
|
|
774
756
|
*/
|
|
775
|
-
declare const
|
|
757
|
+
declare const Legal: React.ForwardRefExoticComponent<Omit<LegalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
776
758
|
|
|
777
759
|
/**
|
|
778
|
-
* Props for the
|
|
760
|
+
* Props for the LikeBold icon component
|
|
779
761
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
780
762
|
*/
|
|
781
|
-
interface
|
|
763
|
+
interface LikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
782
764
|
size?: number | string;
|
|
783
765
|
}
|
|
784
766
|
/**
|
|
785
|
-
*
|
|
767
|
+
* LikeBold icon component
|
|
786
768
|
* @example
|
|
787
769
|
* ```tsx
|
|
788
|
-
* import {
|
|
770
|
+
* import { LikeBold } from 'magick-icons';
|
|
789
771
|
*
|
|
790
|
-
* <
|
|
772
|
+
* <LikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
791
773
|
* ```
|
|
792
774
|
*/
|
|
793
|
-
declare const
|
|
775
|
+
declare const LikeBold: React.ForwardRefExoticComponent<Omit<LikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
776
|
|
|
795
777
|
/**
|
|
796
|
-
* Props for the
|
|
778
|
+
* Props for the Line icon component
|
|
797
779
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
780
|
*/
|
|
799
|
-
interface
|
|
781
|
+
interface LineProps extends React.SVGProps<SVGSVGElement> {
|
|
800
782
|
size?: number | string;
|
|
801
783
|
}
|
|
802
784
|
/**
|
|
803
|
-
*
|
|
785
|
+
* Line icon component
|
|
804
786
|
* @example
|
|
805
787
|
* ```tsx
|
|
806
|
-
* import {
|
|
788
|
+
* import { Line } from 'magick-icons';
|
|
807
789
|
*
|
|
808
|
-
* <
|
|
790
|
+
* <Line size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
791
|
* ```
|
|
810
792
|
*/
|
|
811
|
-
declare const
|
|
793
|
+
declare const Line: React.ForwardRefExoticComponent<Omit<LineProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
794
|
|
|
813
795
|
/**
|
|
814
|
-
* Props for the
|
|
796
|
+
* Props for the LinkSquare icon component
|
|
815
797
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
798
|
*/
|
|
817
|
-
interface
|
|
799
|
+
interface LinkSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
818
800
|
size?: number | string;
|
|
819
801
|
}
|
|
820
802
|
/**
|
|
821
|
-
*
|
|
803
|
+
* LinkSquare icon component
|
|
822
804
|
* @example
|
|
823
805
|
* ```tsx
|
|
824
|
-
* import {
|
|
806
|
+
* import { LinkSquare } from 'magick-icons';
|
|
825
807
|
*
|
|
826
|
-
* <
|
|
808
|
+
* <LinkSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
809
|
* ```
|
|
828
810
|
*/
|
|
829
|
-
declare const
|
|
811
|
+
declare const LinkSquare: React.ForwardRefExoticComponent<Omit<LinkSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
812
|
|
|
831
813
|
/**
|
|
832
814
|
* Props for the List icon component
|
|
@@ -900,6 +882,24 @@ interface ListTodoProps extends React.SVGProps<SVGSVGElement> {
|
|
|
900
882
|
*/
|
|
901
883
|
declare const ListTodo: React.ForwardRefExoticComponent<Omit<ListTodoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
884
|
|
|
885
|
+
/**
|
|
886
|
+
* Props for the MagickPotion icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface MagickPotionProps extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* MagickPotion icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { MagickPotion } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <MagickPotion size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const MagickPotion: React.ForwardRefExoticComponent<Omit<MagickPotionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
903
903
|
/**
|
|
904
904
|
* Props for the MagickoCheck icon component
|
|
905
905
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -918,6 +918,60 @@ interface MagickoCheckProps extends React.SVGProps<SVGSVGElement> {
|
|
|
918
918
|
*/
|
|
919
919
|
declare const MagickoCheck: React.ForwardRefExoticComponent<Omit<MagickoCheckProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
920
|
|
|
921
|
+
/**
|
|
922
|
+
* Props for the Marketing icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface MarketingProps extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* Marketing icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { Marketing } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <Marketing size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const Marketing: React.ForwardRefExoticComponent<Omit<MarketingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* Props for the MessageEdit icon component
|
|
941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
|
+
*/
|
|
943
|
+
interface MessageEditProps extends React.SVGProps<SVGSVGElement> {
|
|
944
|
+
size?: number | string;
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* MessageEdit icon component
|
|
948
|
+
* @example
|
|
949
|
+
* ```tsx
|
|
950
|
+
* import { MessageEdit } from 'magick-icons';
|
|
951
|
+
*
|
|
952
|
+
* <MessageEdit size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
|
+
* ```
|
|
954
|
+
*/
|
|
955
|
+
declare const MessageEdit: React.ForwardRefExoticComponent<Omit<MessageEditProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
|
+
|
|
957
|
+
/**
|
|
958
|
+
* Props for the Network icon component
|
|
959
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
960
|
+
*/
|
|
961
|
+
interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
962
|
+
size?: number | string;
|
|
963
|
+
}
|
|
964
|
+
/**
|
|
965
|
+
* Network icon component
|
|
966
|
+
* @example
|
|
967
|
+
* ```tsx
|
|
968
|
+
* import { Network } from 'magick-icons';
|
|
969
|
+
*
|
|
970
|
+
* <Network size={24} className="text-blue-500" strokeWidth={2} />
|
|
971
|
+
* ```
|
|
972
|
+
*/
|
|
973
|
+
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
974
|
+
|
|
921
975
|
/**
|
|
922
976
|
* Props for the NotiDot icon component
|
|
923
977
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -936,6 +990,24 @@ interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
936
990
|
*/
|
|
937
991
|
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
992
|
|
|
993
|
+
/**
|
|
994
|
+
* Props for the PA icon component
|
|
995
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
|
+
*/
|
|
997
|
+
interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
998
|
+
size?: number | string;
|
|
999
|
+
}
|
|
1000
|
+
/**
|
|
1001
|
+
* PA icon component
|
|
1002
|
+
* @example
|
|
1003
|
+
* ```tsx
|
|
1004
|
+
* import { PA } from 'magick-icons';
|
|
1005
|
+
*
|
|
1006
|
+
* <PA size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
|
+
* ```
|
|
1008
|
+
*/
|
|
1009
|
+
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
|
+
|
|
939
1011
|
/**
|
|
940
1012
|
* Props for the PauseSquare icon component
|
|
941
1013
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1026,6 +1098,24 @@ interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1026
1098
|
*/
|
|
1027
1099
|
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
1100
|
|
|
1101
|
+
/**
|
|
1102
|
+
* Props for the SquarePen1 icon component
|
|
1103
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1104
|
+
*/
|
|
1105
|
+
interface SquarePen1Props extends React.SVGProps<SVGSVGElement> {
|
|
1106
|
+
size?: number | string;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* SquarePen1 icon component
|
|
1110
|
+
* @example
|
|
1111
|
+
* ```tsx
|
|
1112
|
+
* import { SquarePen1 } from 'magick-icons';
|
|
1113
|
+
*
|
|
1114
|
+
* <SquarePen1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1115
|
+
* ```
|
|
1116
|
+
*/
|
|
1117
|
+
declare const SquarePen1: React.ForwardRefExoticComponent<Omit<SquarePen1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1118
|
+
|
|
1029
1119
|
/**
|
|
1030
1120
|
* Props for the Strikethrough icon component
|
|
1031
1121
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1044,6 +1134,24 @@ interface StrikethroughProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1044
1134
|
*/
|
|
1045
1135
|
declare const Strikethrough: React.ForwardRefExoticComponent<Omit<StrikethroughProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
1136
|
|
|
1137
|
+
/**
|
|
1138
|
+
* Props for the Video icon component
|
|
1139
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1140
|
+
*/
|
|
1141
|
+
interface VideoProps extends React.SVGProps<SVGSVGElement> {
|
|
1142
|
+
size?: number | string;
|
|
1143
|
+
}
|
|
1144
|
+
/**
|
|
1145
|
+
* Video icon component
|
|
1146
|
+
* @example
|
|
1147
|
+
* ```tsx
|
|
1148
|
+
* import { Video } from 'magick-icons';
|
|
1149
|
+
*
|
|
1150
|
+
* <Video size={24} className="text-blue-500" strokeWidth={2} />
|
|
1151
|
+
* ```
|
|
1152
|
+
*/
|
|
1153
|
+
declare const Video: React.ForwardRefExoticComponent<Omit<VideoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1154
|
+
|
|
1047
1155
|
/**
|
|
1048
1156
|
* Props for the X icon component
|
|
1049
1157
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1062,4 +1170,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1062
1170
|
*/
|
|
1063
1171
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
1172
|
|
|
1065
|
-
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps,
|
|
1173
|
+
export { AiIcon, type AiIconProps, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, BookmarkFilled, type BookmarkFilledProps, Calendar, type CalendarProps, ChatFullScreen, type ChatFullScreenProps, ChatMaximize, type ChatMaximizeProps, ChatMinimize, type ChatMinimizeProps, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, Doc, type DocProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Excel, type ExcelProps, File, type FileProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, FolderDrawerOpenAddBold, type FolderDrawerOpenAddBoldProps, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GeneralMagicko, type GeneralMagickoProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, Hr, type HrProps, HrSystem, type HrSystemProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, List, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, type ListProps, ListTodo, type ListTodoProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, NotiDot, type NotiDotProps, PA, type PAProps, PauseSquare, type PauseSquareProps, Pdf, type PdfProps, PlayFilled, type PlayFilledProps, Signature, type SignatureProps, SperateDot, type SperateDotProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Video, type VideoProps, X, type XProps };
|