magick-icons 0.1.130 → 0.1.132
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 +965 -191
- package/index.d.ts +965 -191
- package/index.js +1141 -489
- package/index.js.map +1 -1
- package/index.mjs +1128 -519
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -90,6 +90,24 @@ interface AiFlask1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
90
90
|
*/
|
|
91
91
|
declare const AiFlask1: React.ForwardRefExoticComponent<Omit<AiFlask1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
92
92
|
|
|
93
|
+
/**
|
|
94
|
+
* Props for the AiIcon icon component
|
|
95
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
96
|
+
*/
|
|
97
|
+
interface AiIconProps extends React.SVGProps<SVGSVGElement> {
|
|
98
|
+
size?: number | string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* AiIcon icon component
|
|
102
|
+
* @example
|
|
103
|
+
* ```tsx
|
|
104
|
+
* import { AiIcon } from 'magick-icons';
|
|
105
|
+
*
|
|
106
|
+
* <AiIcon size={24} className="text-blue-500" strokeWidth={2} />
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
declare const AiIcon: React.ForwardRefExoticComponent<Omit<AiIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
|
|
93
111
|
/**
|
|
94
112
|
* Props for the AiScience1 icon component
|
|
95
113
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -414,6 +432,24 @@ interface Blur1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
414
432
|
*/
|
|
415
433
|
declare const Blur1: React.ForwardRefExoticComponent<Omit<Blur1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
416
434
|
|
|
435
|
+
/**
|
|
436
|
+
* Props for the BookmarkFilled icon component
|
|
437
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
438
|
+
*/
|
|
439
|
+
interface BookmarkFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
440
|
+
size?: number | string;
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* BookmarkFilled icon component
|
|
444
|
+
* @example
|
|
445
|
+
* ```tsx
|
|
446
|
+
* import { BookmarkFilled } from 'magick-icons';
|
|
447
|
+
*
|
|
448
|
+
* <BookmarkFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
449
|
+
* ```
|
|
450
|
+
*/
|
|
451
|
+
declare const BookmarkFilled: React.ForwardRefExoticComponent<Omit<BookmarkFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
452
|
+
|
|
417
453
|
/**
|
|
418
454
|
* Props for the Box21 icon component
|
|
419
455
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -847,575 +883,1223 @@ interface CardSend1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
847
883
|
declare const CardSend1: React.ForwardRefExoticComponent<Omit<CardSend1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
884
|
|
|
849
885
|
/**
|
|
850
|
-
* Props for the
|
|
886
|
+
* Props for the CardTick1 icon component
|
|
851
887
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
888
|
*/
|
|
853
|
-
interface
|
|
889
|
+
interface CardTick1Props extends React.SVGProps<SVGSVGElement> {
|
|
854
890
|
size?: number | string;
|
|
855
891
|
}
|
|
856
892
|
/**
|
|
857
|
-
*
|
|
893
|
+
* CardTick1 icon component
|
|
858
894
|
* @example
|
|
859
895
|
* ```tsx
|
|
860
|
-
* import {
|
|
896
|
+
* import { CardTick1 } from 'magick-icons';
|
|
861
897
|
*
|
|
862
|
-
* <
|
|
898
|
+
* <CardTick1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
899
|
* ```
|
|
864
900
|
*/
|
|
865
|
-
declare const
|
|
901
|
+
declare const CardTick1: React.ForwardRefExoticComponent<Omit<CardTick1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
902
|
|
|
867
903
|
/**
|
|
868
|
-
* Props for the
|
|
904
|
+
* Props for the CardTick11 icon component
|
|
869
905
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
906
|
*/
|
|
871
|
-
interface
|
|
907
|
+
interface CardTick11Props extends React.SVGProps<SVGSVGElement> {
|
|
872
908
|
size?: number | string;
|
|
873
909
|
}
|
|
874
910
|
/**
|
|
875
|
-
*
|
|
911
|
+
* CardTick11 icon component
|
|
876
912
|
* @example
|
|
877
913
|
* ```tsx
|
|
878
|
-
* import {
|
|
914
|
+
* import { CardTick11 } from 'magick-icons';
|
|
879
915
|
*
|
|
880
|
-
* <
|
|
916
|
+
* <CardTick11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
917
|
* ```
|
|
882
918
|
*/
|
|
883
|
-
declare const
|
|
919
|
+
declare const CardTick11: React.ForwardRefExoticComponent<Omit<CardTick11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
920
|
|
|
885
921
|
/**
|
|
886
|
-
* Props for the
|
|
922
|
+
* Props for the CardanoAda icon component
|
|
887
923
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
924
|
*/
|
|
889
|
-
interface
|
|
925
|
+
interface CardanoAdaProps extends React.SVGProps<SVGSVGElement> {
|
|
890
926
|
size?: number | string;
|
|
891
927
|
}
|
|
892
928
|
/**
|
|
893
|
-
*
|
|
929
|
+
* CardanoAda icon component
|
|
894
930
|
* @example
|
|
895
931
|
* ```tsx
|
|
896
|
-
* import {
|
|
932
|
+
* import { CardanoAda } from 'magick-icons';
|
|
897
933
|
*
|
|
898
|
-
* <
|
|
934
|
+
* <CardanoAda size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
935
|
* ```
|
|
900
936
|
*/
|
|
901
|
-
declare const
|
|
937
|
+
declare const CardanoAda: React.ForwardRefExoticComponent<Omit<CardanoAdaProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
938
|
|
|
903
939
|
/**
|
|
904
|
-
* Props for the
|
|
940
|
+
* Props for the Cards1 icon component
|
|
905
941
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
942
|
*/
|
|
907
|
-
interface
|
|
943
|
+
interface Cards1Props extends React.SVGProps<SVGSVGElement> {
|
|
908
944
|
size?: number | string;
|
|
909
945
|
}
|
|
910
946
|
/**
|
|
911
|
-
*
|
|
947
|
+
* Cards1 icon component
|
|
912
948
|
* @example
|
|
913
949
|
* ```tsx
|
|
914
|
-
* import {
|
|
950
|
+
* import { Cards1 } from 'magick-icons';
|
|
915
951
|
*
|
|
916
|
-
* <
|
|
952
|
+
* <Cards1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
953
|
* ```
|
|
918
954
|
*/
|
|
919
|
-
declare const
|
|
955
|
+
declare const Cards1: React.ForwardRefExoticComponent<Omit<Cards1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
956
|
|
|
921
957
|
/**
|
|
922
|
-
* Props for the
|
|
958
|
+
* Props for the Cards11 icon component
|
|
923
959
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
960
|
*/
|
|
925
|
-
interface
|
|
961
|
+
interface Cards11Props extends React.SVGProps<SVGSVGElement> {
|
|
926
962
|
size?: number | string;
|
|
927
963
|
}
|
|
928
964
|
/**
|
|
929
|
-
*
|
|
965
|
+
* Cards11 icon component
|
|
930
966
|
* @example
|
|
931
967
|
* ```tsx
|
|
932
|
-
* import {
|
|
968
|
+
* import { Cards11 } from 'magick-icons';
|
|
933
969
|
*
|
|
934
|
-
* <
|
|
970
|
+
* <Cards11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
971
|
* ```
|
|
936
972
|
*/
|
|
937
|
-
declare const
|
|
973
|
+
declare const Cards11: React.ForwardRefExoticComponent<Omit<Cards11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
974
|
|
|
939
975
|
/**
|
|
940
|
-
* Props for the
|
|
976
|
+
* Props for the Cd1 icon component
|
|
941
977
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
978
|
*/
|
|
943
|
-
interface
|
|
979
|
+
interface Cd1Props extends React.SVGProps<SVGSVGElement> {
|
|
944
980
|
size?: number | string;
|
|
945
981
|
}
|
|
946
982
|
/**
|
|
947
|
-
*
|
|
983
|
+
* Cd1 icon component
|
|
948
984
|
* @example
|
|
949
985
|
* ```tsx
|
|
950
|
-
* import {
|
|
986
|
+
* import { Cd1 } from 'magick-icons';
|
|
951
987
|
*
|
|
952
|
-
* <
|
|
988
|
+
* <Cd1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
989
|
* ```
|
|
954
990
|
*/
|
|
955
|
-
declare const
|
|
991
|
+
declare const Cd1: React.ForwardRefExoticComponent<Omit<Cd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
992
|
|
|
957
993
|
/**
|
|
958
|
-
* Props for the
|
|
994
|
+
* Props for the Centralized1 icon component
|
|
959
995
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
960
996
|
*/
|
|
961
|
-
interface
|
|
997
|
+
interface Centralized1Props extends React.SVGProps<SVGSVGElement> {
|
|
962
998
|
size?: number | string;
|
|
963
999
|
}
|
|
964
1000
|
/**
|
|
965
|
-
*
|
|
1001
|
+
* Centralized1 icon component
|
|
966
1002
|
* @example
|
|
967
1003
|
* ```tsx
|
|
968
|
-
* import {
|
|
1004
|
+
* import { Centralized1 } from 'magick-icons';
|
|
969
1005
|
*
|
|
970
|
-
* <
|
|
1006
|
+
* <Centralized1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
971
1007
|
* ```
|
|
972
1008
|
*/
|
|
973
|
-
declare const
|
|
1009
|
+
declare const Centralized1: React.ForwardRefExoticComponent<Omit<Centralized1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
974
1010
|
|
|
975
1011
|
/**
|
|
976
|
-
* Props for the
|
|
1012
|
+
* Props for the ChatFullScreen icon component
|
|
977
1013
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
978
1014
|
*/
|
|
979
|
-
interface
|
|
1015
|
+
interface ChatFullScreenProps extends React.SVGProps<SVGSVGElement> {
|
|
980
1016
|
size?: number | string;
|
|
981
1017
|
}
|
|
982
1018
|
/**
|
|
983
|
-
*
|
|
1019
|
+
* ChatFullScreen icon component
|
|
984
1020
|
* @example
|
|
985
1021
|
* ```tsx
|
|
986
|
-
* import {
|
|
1022
|
+
* import { ChatFullScreen } from 'magick-icons';
|
|
987
1023
|
*
|
|
988
|
-
* <
|
|
1024
|
+
* <ChatFullScreen size={24} className="text-blue-500" strokeWidth={2} />
|
|
989
1025
|
* ```
|
|
990
1026
|
*/
|
|
991
|
-
declare const
|
|
1027
|
+
declare const ChatFullScreen: React.ForwardRefExoticComponent<Omit<ChatFullScreenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
992
1028
|
|
|
993
1029
|
/**
|
|
994
|
-
* Props for the
|
|
1030
|
+
* Props for the ChatMaximize icon component
|
|
995
1031
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
996
1032
|
*/
|
|
997
|
-
interface
|
|
1033
|
+
interface ChatMaximizeProps extends React.SVGProps<SVGSVGElement> {
|
|
998
1034
|
size?: number | string;
|
|
999
1035
|
}
|
|
1000
1036
|
/**
|
|
1001
|
-
*
|
|
1037
|
+
* ChatMaximize icon component
|
|
1002
1038
|
* @example
|
|
1003
1039
|
* ```tsx
|
|
1004
|
-
* import {
|
|
1040
|
+
* import { ChatMaximize } from 'magick-icons';
|
|
1005
1041
|
*
|
|
1006
|
-
* <
|
|
1042
|
+
* <ChatMaximize size={24} className="text-blue-500" strokeWidth={2} />
|
|
1007
1043
|
* ```
|
|
1008
1044
|
*/
|
|
1009
|
-
declare const
|
|
1045
|
+
declare const ChatMaximize: React.ForwardRefExoticComponent<Omit<ChatMaximizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1010
1046
|
|
|
1011
1047
|
/**
|
|
1012
|
-
* Props for the
|
|
1048
|
+
* Props for the ChatMinimize icon component
|
|
1013
1049
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1014
1050
|
*/
|
|
1015
|
-
interface
|
|
1051
|
+
interface ChatMinimizeProps extends React.SVGProps<SVGSVGElement> {
|
|
1016
1052
|
size?: number | string;
|
|
1017
1053
|
}
|
|
1018
1054
|
/**
|
|
1019
|
-
*
|
|
1055
|
+
* ChatMinimize icon component
|
|
1020
1056
|
* @example
|
|
1021
1057
|
* ```tsx
|
|
1022
|
-
* import {
|
|
1058
|
+
* import { ChatMinimize } from 'magick-icons';
|
|
1023
1059
|
*
|
|
1024
|
-
* <
|
|
1060
|
+
* <ChatMinimize size={24} className="text-blue-500" strokeWidth={2} />
|
|
1025
1061
|
* ```
|
|
1026
1062
|
*/
|
|
1027
|
-
declare const
|
|
1063
|
+
declare const ChatMinimize: React.ForwardRefExoticComponent<Omit<ChatMinimizeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1028
1064
|
|
|
1029
1065
|
/**
|
|
1030
|
-
* Props for the
|
|
1066
|
+
* Props for the ChevronDown icon component
|
|
1031
1067
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1032
1068
|
*/
|
|
1033
|
-
interface
|
|
1069
|
+
interface ChevronDownProps extends React.SVGProps<SVGSVGElement> {
|
|
1034
1070
|
size?: number | string;
|
|
1035
1071
|
}
|
|
1036
1072
|
/**
|
|
1037
|
-
*
|
|
1073
|
+
* ChevronDown icon component
|
|
1038
1074
|
* @example
|
|
1039
1075
|
* ```tsx
|
|
1040
|
-
* import {
|
|
1076
|
+
* import { ChevronDown } from 'magick-icons';
|
|
1041
1077
|
*
|
|
1042
|
-
* <
|
|
1078
|
+
* <ChevronDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
1043
1079
|
* ```
|
|
1044
1080
|
*/
|
|
1045
|
-
declare const
|
|
1081
|
+
declare const ChevronDown: React.ForwardRefExoticComponent<Omit<ChevronDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1046
1082
|
|
|
1047
1083
|
/**
|
|
1048
|
-
* Props for the
|
|
1084
|
+
* Props for the ChevronLeft icon component
|
|
1049
1085
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1050
1086
|
*/
|
|
1051
|
-
interface
|
|
1087
|
+
interface ChevronLeftProps extends React.SVGProps<SVGSVGElement> {
|
|
1052
1088
|
size?: number | string;
|
|
1053
1089
|
}
|
|
1054
1090
|
/**
|
|
1055
|
-
*
|
|
1091
|
+
* ChevronLeft icon component
|
|
1056
1092
|
* @example
|
|
1057
1093
|
* ```tsx
|
|
1058
|
-
* import {
|
|
1094
|
+
* import { ChevronLeft } from 'magick-icons';
|
|
1059
1095
|
*
|
|
1060
|
-
* <
|
|
1096
|
+
* <ChevronLeft size={24} className="text-blue-500" strokeWidth={2} />
|
|
1061
1097
|
* ```
|
|
1062
1098
|
*/
|
|
1063
|
-
declare const
|
|
1099
|
+
declare const ChevronLeft: React.ForwardRefExoticComponent<Omit<ChevronLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1064
1100
|
|
|
1065
1101
|
/**
|
|
1066
|
-
* Props for the
|
|
1102
|
+
* Props for the ChevronRight icon component
|
|
1067
1103
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1068
1104
|
*/
|
|
1069
|
-
interface
|
|
1105
|
+
interface ChevronRightProps extends React.SVGProps<SVGSVGElement> {
|
|
1070
1106
|
size?: number | string;
|
|
1071
1107
|
}
|
|
1072
1108
|
/**
|
|
1073
|
-
*
|
|
1109
|
+
* ChevronRight icon component
|
|
1074
1110
|
* @example
|
|
1075
1111
|
* ```tsx
|
|
1076
|
-
* import {
|
|
1112
|
+
* import { ChevronRight } from 'magick-icons';
|
|
1077
1113
|
*
|
|
1078
|
-
* <
|
|
1114
|
+
* <ChevronRight size={24} className="text-blue-500" strokeWidth={2} />
|
|
1079
1115
|
* ```
|
|
1080
1116
|
*/
|
|
1081
|
-
declare const
|
|
1117
|
+
declare const ChevronRight: React.ForwardRefExoticComponent<Omit<ChevronRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1082
1118
|
|
|
1083
1119
|
/**
|
|
1084
|
-
* Props for the
|
|
1120
|
+
* Props for the ChevronUp icon component
|
|
1085
1121
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1086
1122
|
*/
|
|
1087
|
-
interface
|
|
1123
|
+
interface ChevronUpProps extends React.SVGProps<SVGSVGElement> {
|
|
1088
1124
|
size?: number | string;
|
|
1089
1125
|
}
|
|
1090
1126
|
/**
|
|
1091
|
-
*
|
|
1127
|
+
* ChevronUp icon component
|
|
1092
1128
|
* @example
|
|
1093
1129
|
* ```tsx
|
|
1094
|
-
* import {
|
|
1130
|
+
* import { ChevronUp } from 'magick-icons';
|
|
1095
1131
|
*
|
|
1096
|
-
* <
|
|
1132
|
+
* <ChevronUp size={24} className="text-blue-500" strokeWidth={2} />
|
|
1097
1133
|
* ```
|
|
1098
1134
|
*/
|
|
1099
|
-
declare const
|
|
1135
|
+
declare const ChevronUp: React.ForwardRefExoticComponent<Omit<ChevronUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1100
1136
|
|
|
1101
1137
|
/**
|
|
1102
|
-
* Props for the
|
|
1138
|
+
* Props for the ChevronsUpDown icon component
|
|
1103
1139
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1104
1140
|
*/
|
|
1105
|
-
interface
|
|
1141
|
+
interface ChevronsUpDownProps extends React.SVGProps<SVGSVGElement> {
|
|
1106
1142
|
size?: number | string;
|
|
1107
1143
|
}
|
|
1108
1144
|
/**
|
|
1109
|
-
*
|
|
1145
|
+
* ChevronsUpDown icon component
|
|
1110
1146
|
* @example
|
|
1111
1147
|
* ```tsx
|
|
1112
|
-
* import {
|
|
1148
|
+
* import { ChevronsUpDown } from 'magick-icons';
|
|
1113
1149
|
*
|
|
1114
|
-
* <
|
|
1150
|
+
* <ChevronsUpDown size={24} className="text-blue-500" strokeWidth={2} />
|
|
1115
1151
|
* ```
|
|
1116
1152
|
*/
|
|
1117
|
-
declare const
|
|
1153
|
+
declare const ChevronsUpDown: React.ForwardRefExoticComponent<Omit<ChevronsUpDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1118
1154
|
|
|
1119
1155
|
/**
|
|
1120
|
-
* Props for the
|
|
1156
|
+
* Props for the Chrome1 icon component
|
|
1121
1157
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1122
1158
|
*/
|
|
1123
|
-
interface
|
|
1159
|
+
interface Chrome1Props extends React.SVGProps<SVGSVGElement> {
|
|
1124
1160
|
size?: number | string;
|
|
1125
1161
|
}
|
|
1126
1162
|
/**
|
|
1127
|
-
*
|
|
1163
|
+
* Chrome1 icon component
|
|
1128
1164
|
* @example
|
|
1129
1165
|
* ```tsx
|
|
1130
|
-
* import {
|
|
1166
|
+
* import { Chrome1 } from 'magick-icons';
|
|
1131
1167
|
*
|
|
1132
|
-
* <
|
|
1168
|
+
* <Chrome1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1133
1169
|
* ```
|
|
1134
1170
|
*/
|
|
1135
|
-
declare const
|
|
1171
|
+
declare const Chrome1: React.ForwardRefExoticComponent<Omit<Chrome1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1136
1172
|
|
|
1137
1173
|
/**
|
|
1138
|
-
* Props for the
|
|
1174
|
+
* Props for the Chrome11 icon component
|
|
1139
1175
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1140
1176
|
*/
|
|
1141
|
-
interface
|
|
1177
|
+
interface Chrome11Props extends React.SVGProps<SVGSVGElement> {
|
|
1142
1178
|
size?: number | string;
|
|
1143
1179
|
}
|
|
1144
1180
|
/**
|
|
1145
|
-
*
|
|
1181
|
+
* Chrome11 icon component
|
|
1146
1182
|
* @example
|
|
1147
1183
|
* ```tsx
|
|
1148
|
-
* import {
|
|
1184
|
+
* import { Chrome11 } from 'magick-icons';
|
|
1149
1185
|
*
|
|
1150
|
-
* <
|
|
1186
|
+
* <Chrome11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1151
1187
|
* ```
|
|
1152
1188
|
*/
|
|
1153
|
-
declare const
|
|
1189
|
+
declare const Chrome11: React.ForwardRefExoticComponent<Omit<Chrome11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1154
1190
|
|
|
1155
1191
|
/**
|
|
1156
|
-
* Props for the
|
|
1192
|
+
* Props for the CircleCheckFill icon component
|
|
1157
1193
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1158
1194
|
*/
|
|
1159
|
-
interface
|
|
1195
|
+
interface CircleCheckFillProps extends React.SVGProps<SVGSVGElement> {
|
|
1160
1196
|
size?: number | string;
|
|
1161
1197
|
}
|
|
1162
1198
|
/**
|
|
1163
|
-
*
|
|
1199
|
+
* CircleCheckFill icon component
|
|
1164
1200
|
* @example
|
|
1165
1201
|
* ```tsx
|
|
1166
|
-
* import {
|
|
1202
|
+
* import { CircleCheckFill } from 'magick-icons';
|
|
1167
1203
|
*
|
|
1168
|
-
* <
|
|
1204
|
+
* <CircleCheckFill size={24} className="text-blue-500" strokeWidth={2} />
|
|
1169
1205
|
* ```
|
|
1170
1206
|
*/
|
|
1171
|
-
declare const
|
|
1207
|
+
declare const CircleCheckFill: React.ForwardRefExoticComponent<Omit<CircleCheckFillProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1172
1208
|
|
|
1173
1209
|
/**
|
|
1174
|
-
* Props for the
|
|
1210
|
+
* Props for the CloseCircle1 icon component
|
|
1175
1211
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1176
1212
|
*/
|
|
1177
|
-
interface
|
|
1213
|
+
interface CloseCircle1Props extends React.SVGProps<SVGSVGElement> {
|
|
1178
1214
|
size?: number | string;
|
|
1179
1215
|
}
|
|
1180
1216
|
/**
|
|
1181
|
-
*
|
|
1217
|
+
* CloseCircle1 icon component
|
|
1182
1218
|
* @example
|
|
1183
1219
|
* ```tsx
|
|
1184
|
-
* import {
|
|
1220
|
+
* import { CloseCircle1 } from 'magick-icons';
|
|
1185
1221
|
*
|
|
1186
|
-
* <
|
|
1222
|
+
* <CloseCircle1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1187
1223
|
* ```
|
|
1188
1224
|
*/
|
|
1189
|
-
declare const
|
|
1225
|
+
declare const CloseCircle1: React.ForwardRefExoticComponent<Omit<CloseCircle1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1190
1226
|
|
|
1191
1227
|
/**
|
|
1192
|
-
* Props for the
|
|
1228
|
+
* Props for the Coffee1 icon component
|
|
1193
1229
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1194
1230
|
*/
|
|
1195
|
-
interface
|
|
1231
|
+
interface Coffee1Props extends React.SVGProps<SVGSVGElement> {
|
|
1196
1232
|
size?: number | string;
|
|
1197
1233
|
}
|
|
1198
1234
|
/**
|
|
1199
|
-
*
|
|
1235
|
+
* Coffee1 icon component
|
|
1200
1236
|
* @example
|
|
1201
1237
|
* ```tsx
|
|
1202
|
-
* import {
|
|
1238
|
+
* import { Coffee1 } from 'magick-icons';
|
|
1203
1239
|
*
|
|
1204
|
-
* <
|
|
1240
|
+
* <Coffee1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1205
1241
|
* ```
|
|
1206
1242
|
*/
|
|
1207
|
-
declare const
|
|
1243
|
+
declare const Coffee1: React.ForwardRefExoticComponent<Omit<Coffee1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1208
1244
|
|
|
1209
1245
|
/**
|
|
1210
|
-
* Props for the
|
|
1246
|
+
* Props for the Coffee11 icon component
|
|
1211
1247
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1212
1248
|
*/
|
|
1213
|
-
interface
|
|
1249
|
+
interface Coffee11Props extends React.SVGProps<SVGSVGElement> {
|
|
1214
1250
|
size?: number | string;
|
|
1215
1251
|
}
|
|
1216
1252
|
/**
|
|
1217
|
-
*
|
|
1253
|
+
* Coffee11 icon component
|
|
1218
1254
|
* @example
|
|
1219
1255
|
* ```tsx
|
|
1220
|
-
* import {
|
|
1256
|
+
* import { Coffee11 } from 'magick-icons';
|
|
1221
1257
|
*
|
|
1222
|
-
* <
|
|
1258
|
+
* <Coffee11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1223
1259
|
* ```
|
|
1224
1260
|
*/
|
|
1225
|
-
declare const
|
|
1261
|
+
declare const Coffee11: React.ForwardRefExoticComponent<Omit<Coffee11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1226
1262
|
|
|
1227
1263
|
/**
|
|
1228
|
-
* Props for the
|
|
1264
|
+
* Props for the Coin1 icon component
|
|
1229
1265
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1230
1266
|
*/
|
|
1231
|
-
interface
|
|
1267
|
+
interface Coin1Props extends React.SVGProps<SVGSVGElement> {
|
|
1232
1268
|
size?: number | string;
|
|
1233
1269
|
}
|
|
1234
1270
|
/**
|
|
1235
|
-
*
|
|
1271
|
+
* Coin1 icon component
|
|
1236
1272
|
* @example
|
|
1237
1273
|
* ```tsx
|
|
1238
|
-
* import {
|
|
1274
|
+
* import { Coin1 } from 'magick-icons';
|
|
1239
1275
|
*
|
|
1240
|
-
* <
|
|
1276
|
+
* <Coin1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1241
1277
|
* ```
|
|
1242
1278
|
*/
|
|
1243
|
-
declare const
|
|
1279
|
+
declare const Coin1: React.ForwardRefExoticComponent<Omit<Coin1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1244
1280
|
|
|
1245
1281
|
/**
|
|
1246
|
-
* Props for the
|
|
1282
|
+
* Props for the Coins1 icon component
|
|
1247
1283
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1248
1284
|
*/
|
|
1249
|
-
interface
|
|
1285
|
+
interface Coins1Props extends React.SVGProps<SVGSVGElement> {
|
|
1250
1286
|
size?: number | string;
|
|
1251
1287
|
}
|
|
1252
1288
|
/**
|
|
1253
|
-
*
|
|
1289
|
+
* Coins1 icon component
|
|
1254
1290
|
* @example
|
|
1255
1291
|
* ```tsx
|
|
1256
|
-
* import {
|
|
1292
|
+
* import { Coins1 } from 'magick-icons';
|
|
1257
1293
|
*
|
|
1258
|
-
* <
|
|
1294
|
+
* <Coins1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1259
1295
|
* ```
|
|
1260
1296
|
*/
|
|
1261
|
-
declare const
|
|
1297
|
+
declare const Coins1: React.ForwardRefExoticComponent<Omit<Coins1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1262
1298
|
|
|
1263
1299
|
/**
|
|
1264
|
-
* Props for the
|
|
1300
|
+
* Props for the ColorSwatch1 icon component
|
|
1265
1301
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1266
1302
|
*/
|
|
1267
|
-
interface
|
|
1303
|
+
interface ColorSwatch1Props extends React.SVGProps<SVGSVGElement> {
|
|
1268
1304
|
size?: number | string;
|
|
1269
1305
|
}
|
|
1270
1306
|
/**
|
|
1271
|
-
*
|
|
1307
|
+
* ColorSwatch1 icon component
|
|
1272
1308
|
* @example
|
|
1273
1309
|
* ```tsx
|
|
1274
|
-
* import {
|
|
1310
|
+
* import { ColorSwatch1 } from 'magick-icons';
|
|
1275
1311
|
*
|
|
1276
|
-
* <
|
|
1312
|
+
* <ColorSwatch1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1277
1313
|
* ```
|
|
1278
1314
|
*/
|
|
1279
|
-
declare const
|
|
1315
|
+
declare const ColorSwatch1: React.ForwardRefExoticComponent<Omit<ColorSwatch1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1280
1316
|
|
|
1281
1317
|
/**
|
|
1282
|
-
* Props for the
|
|
1318
|
+
* Props for the Colorfilter1 icon component
|
|
1283
1319
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1284
1320
|
*/
|
|
1285
|
-
interface
|
|
1321
|
+
interface Colorfilter1Props extends React.SVGProps<SVGSVGElement> {
|
|
1286
1322
|
size?: number | string;
|
|
1287
1323
|
}
|
|
1288
1324
|
/**
|
|
1289
|
-
*
|
|
1325
|
+
* Colorfilter1 icon component
|
|
1290
1326
|
* @example
|
|
1291
1327
|
* ```tsx
|
|
1292
|
-
* import {
|
|
1328
|
+
* import { Colorfilter1 } from 'magick-icons';
|
|
1293
1329
|
*
|
|
1294
|
-
* <
|
|
1330
|
+
* <Colorfilter1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1295
1331
|
* ```
|
|
1296
1332
|
*/
|
|
1297
|
-
declare const
|
|
1333
|
+
declare const Colorfilter1: React.ForwardRefExoticComponent<Omit<Colorfilter1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1298
1334
|
|
|
1299
1335
|
/**
|
|
1300
|
-
* Props for the
|
|
1336
|
+
* Props for the ColorsSquare1 icon component
|
|
1301
1337
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1302
1338
|
*/
|
|
1303
|
-
interface
|
|
1339
|
+
interface ColorsSquare1Props extends React.SVGProps<SVGSVGElement> {
|
|
1304
1340
|
size?: number | string;
|
|
1305
1341
|
}
|
|
1306
1342
|
/**
|
|
1307
|
-
*
|
|
1343
|
+
* ColorsSquare1 icon component
|
|
1308
1344
|
* @example
|
|
1309
1345
|
* ```tsx
|
|
1310
|
-
* import {
|
|
1346
|
+
* import { ColorsSquare1 } from 'magick-icons';
|
|
1311
1347
|
*
|
|
1312
|
-
* <
|
|
1348
|
+
* <ColorsSquare1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1313
1349
|
* ```
|
|
1314
1350
|
*/
|
|
1315
|
-
declare const
|
|
1351
|
+
declare const ColorsSquare1: React.ForwardRefExoticComponent<Omit<ColorsSquare1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1316
1352
|
|
|
1317
1353
|
/**
|
|
1318
|
-
* Props for the
|
|
1354
|
+
* Props for the Component1 icon component
|
|
1319
1355
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1320
1356
|
*/
|
|
1321
|
-
interface
|
|
1357
|
+
interface Component1Props extends React.SVGProps<SVGSVGElement> {
|
|
1322
1358
|
size?: number | string;
|
|
1323
1359
|
}
|
|
1324
1360
|
/**
|
|
1325
|
-
*
|
|
1361
|
+
* Component1 icon component
|
|
1326
1362
|
* @example
|
|
1327
1363
|
* ```tsx
|
|
1328
|
-
* import {
|
|
1364
|
+
* import { Component1 } from 'magick-icons';
|
|
1329
1365
|
*
|
|
1330
|
-
* <
|
|
1366
|
+
* <Component1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1331
1367
|
* ```
|
|
1332
1368
|
*/
|
|
1333
|
-
declare const
|
|
1369
|
+
declare const Component1: React.ForwardRefExoticComponent<Omit<Component1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1334
1370
|
|
|
1335
1371
|
/**
|
|
1336
|
-
* Props for the
|
|
1372
|
+
* Props for the Computing1 icon component
|
|
1337
1373
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1338
1374
|
*/
|
|
1339
|
-
interface
|
|
1375
|
+
interface Computing1Props extends React.SVGProps<SVGSVGElement> {
|
|
1340
1376
|
size?: number | string;
|
|
1341
1377
|
}
|
|
1342
1378
|
/**
|
|
1343
|
-
*
|
|
1379
|
+
* Computing1 icon component
|
|
1344
1380
|
* @example
|
|
1345
1381
|
* ```tsx
|
|
1346
|
-
* import {
|
|
1382
|
+
* import { Computing1 } from 'magick-icons';
|
|
1347
1383
|
*
|
|
1348
|
-
* <
|
|
1384
|
+
* <Computing1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1349
1385
|
* ```
|
|
1350
1386
|
*/
|
|
1351
|
-
declare const
|
|
1387
|
+
declare const Computing1: React.ForwardRefExoticComponent<Omit<Computing1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1352
1388
|
|
|
1353
1389
|
/**
|
|
1354
|
-
* Props for the
|
|
1390
|
+
* Props for the Convert3dCube1 icon component
|
|
1355
1391
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1356
1392
|
*/
|
|
1357
|
-
interface
|
|
1393
|
+
interface Convert3dCube1Props extends React.SVGProps<SVGSVGElement> {
|
|
1358
1394
|
size?: number | string;
|
|
1359
1395
|
}
|
|
1360
1396
|
/**
|
|
1361
|
-
*
|
|
1397
|
+
* Convert3dCube1 icon component
|
|
1362
1398
|
* @example
|
|
1363
1399
|
* ```tsx
|
|
1364
|
-
* import {
|
|
1400
|
+
* import { Convert3dCube1 } from 'magick-icons';
|
|
1365
1401
|
*
|
|
1366
|
-
* <
|
|
1402
|
+
* <Convert3dCube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1367
1403
|
* ```
|
|
1368
1404
|
*/
|
|
1369
|
-
declare const
|
|
1405
|
+
declare const Convert3dCube1: React.ForwardRefExoticComponent<Omit<Convert3dCube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1370
1406
|
|
|
1371
1407
|
/**
|
|
1372
|
-
* Props for the
|
|
1408
|
+
* Props for the ConvertCard1 icon component
|
|
1373
1409
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1374
1410
|
*/
|
|
1375
|
-
interface
|
|
1411
|
+
interface ConvertCard1Props extends React.SVGProps<SVGSVGElement> {
|
|
1376
1412
|
size?: number | string;
|
|
1377
1413
|
}
|
|
1378
1414
|
/**
|
|
1379
|
-
*
|
|
1415
|
+
* ConvertCard1 icon component
|
|
1380
1416
|
* @example
|
|
1381
1417
|
* ```tsx
|
|
1382
|
-
* import {
|
|
1418
|
+
* import { ConvertCard1 } from 'magick-icons';
|
|
1383
1419
|
*
|
|
1384
|
-
* <
|
|
1420
|
+
* <ConvertCard1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1385
1421
|
* ```
|
|
1386
1422
|
*/
|
|
1387
|
-
declare const
|
|
1423
|
+
declare const ConvertCard1: React.ForwardRefExoticComponent<Omit<ConvertCard1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1388
1424
|
|
|
1389
1425
|
/**
|
|
1390
|
-
* Props for the
|
|
1426
|
+
* Props for the Convertshape1 icon component
|
|
1391
1427
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1392
1428
|
*/
|
|
1393
|
-
interface
|
|
1429
|
+
interface Convertshape1Props extends React.SVGProps<SVGSVGElement> {
|
|
1394
1430
|
size?: number | string;
|
|
1395
1431
|
}
|
|
1396
1432
|
/**
|
|
1397
|
-
*
|
|
1433
|
+
* Convertshape1 icon component
|
|
1398
1434
|
* @example
|
|
1399
1435
|
* ```tsx
|
|
1400
|
-
* import {
|
|
1436
|
+
* import { Convertshape1 } from 'magick-icons';
|
|
1401
1437
|
*
|
|
1402
|
-
* <
|
|
1438
|
+
* <Convertshape1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1403
1439
|
* ```
|
|
1404
1440
|
*/
|
|
1405
|
-
declare const
|
|
1441
|
+
declare const Convertshape1: React.ForwardRefExoticComponent<Omit<Convertshape1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1406
1442
|
|
|
1407
1443
|
/**
|
|
1408
|
-
* Props for the
|
|
1444
|
+
* Props for the Convertshape21 icon component
|
|
1409
1445
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1410
1446
|
*/
|
|
1411
|
-
interface
|
|
1447
|
+
interface Convertshape21Props extends React.SVGProps<SVGSVGElement> {
|
|
1412
1448
|
size?: number | string;
|
|
1413
1449
|
}
|
|
1414
1450
|
/**
|
|
1415
|
-
*
|
|
1451
|
+
* Convertshape21 icon component
|
|
1416
1452
|
* @example
|
|
1417
1453
|
* ```tsx
|
|
1418
|
-
* import {
|
|
1454
|
+
* import { Convertshape21 } from 'magick-icons';
|
|
1455
|
+
*
|
|
1456
|
+
* <Convertshape21 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1457
|
+
* ```
|
|
1458
|
+
*/
|
|
1459
|
+
declare const Convertshape21: React.ForwardRefExoticComponent<Omit<Convertshape21Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1460
|
+
|
|
1461
|
+
/**
|
|
1462
|
+
* Props for the Crop1 icon component
|
|
1463
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1464
|
+
*/
|
|
1465
|
+
interface Crop1Props extends React.SVGProps<SVGSVGElement> {
|
|
1466
|
+
size?: number | string;
|
|
1467
|
+
}
|
|
1468
|
+
/**
|
|
1469
|
+
* Crop1 icon component
|
|
1470
|
+
* @example
|
|
1471
|
+
* ```tsx
|
|
1472
|
+
* import { Crop1 } from 'magick-icons';
|
|
1473
|
+
*
|
|
1474
|
+
* <Crop1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1475
|
+
* ```
|
|
1476
|
+
*/
|
|
1477
|
+
declare const Crop1: React.ForwardRefExoticComponent<Omit<Crop1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1478
|
+
|
|
1479
|
+
/**
|
|
1480
|
+
* Props for the Crop11 icon component
|
|
1481
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1482
|
+
*/
|
|
1483
|
+
interface Crop11Props extends React.SVGProps<SVGSVGElement> {
|
|
1484
|
+
size?: number | string;
|
|
1485
|
+
}
|
|
1486
|
+
/**
|
|
1487
|
+
* Crop11 icon component
|
|
1488
|
+
* @example
|
|
1489
|
+
* ```tsx
|
|
1490
|
+
* import { Crop11 } from 'magick-icons';
|
|
1491
|
+
*
|
|
1492
|
+
* <Crop11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1493
|
+
* ```
|
|
1494
|
+
*/
|
|
1495
|
+
declare const Crop11: React.ForwardRefExoticComponent<Omit<Crop11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1496
|
+
|
|
1497
|
+
/**
|
|
1498
|
+
* Props for the Crown1 icon component
|
|
1499
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1500
|
+
*/
|
|
1501
|
+
interface Crown1Props extends React.SVGProps<SVGSVGElement> {
|
|
1502
|
+
size?: number | string;
|
|
1503
|
+
}
|
|
1504
|
+
/**
|
|
1505
|
+
* Crown1 icon component
|
|
1506
|
+
* @example
|
|
1507
|
+
* ```tsx
|
|
1508
|
+
* import { Crown1 } from 'magick-icons';
|
|
1509
|
+
*
|
|
1510
|
+
* <Crown1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1511
|
+
* ```
|
|
1512
|
+
*/
|
|
1513
|
+
declare const Crown1: React.ForwardRefExoticComponent<Omit<Crown1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1514
|
+
|
|
1515
|
+
/**
|
|
1516
|
+
* Props for the Crown11 icon component
|
|
1517
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1518
|
+
*/
|
|
1519
|
+
interface Crown11Props extends React.SVGProps<SVGSVGElement> {
|
|
1520
|
+
size?: number | string;
|
|
1521
|
+
}
|
|
1522
|
+
/**
|
|
1523
|
+
* Crown11 icon component
|
|
1524
|
+
* @example
|
|
1525
|
+
* ```tsx
|
|
1526
|
+
* import { Crown11 } from 'magick-icons';
|
|
1527
|
+
*
|
|
1528
|
+
* <Crown11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1529
|
+
* ```
|
|
1530
|
+
*/
|
|
1531
|
+
declare const Crown11: React.ForwardRefExoticComponent<Omit<Crown11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1532
|
+
|
|
1533
|
+
/**
|
|
1534
|
+
* Props for the DislikeBold icon component
|
|
1535
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1536
|
+
*/
|
|
1537
|
+
interface DislikeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1538
|
+
size?: number | string;
|
|
1539
|
+
}
|
|
1540
|
+
/**
|
|
1541
|
+
* DislikeBold icon component
|
|
1542
|
+
* @example
|
|
1543
|
+
* ```tsx
|
|
1544
|
+
* import { DislikeBold } from 'magick-icons';
|
|
1545
|
+
*
|
|
1546
|
+
* <DislikeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1547
|
+
* ```
|
|
1548
|
+
*/
|
|
1549
|
+
declare const DislikeBold: React.ForwardRefExoticComponent<Omit<DislikeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1550
|
+
|
|
1551
|
+
/**
|
|
1552
|
+
* Props for the Doc icon component
|
|
1553
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1554
|
+
*/
|
|
1555
|
+
interface DocProps extends React.SVGProps<SVGSVGElement> {
|
|
1556
|
+
size?: number | string;
|
|
1557
|
+
}
|
|
1558
|
+
/**
|
|
1559
|
+
* Doc icon component
|
|
1560
|
+
* @example
|
|
1561
|
+
* ```tsx
|
|
1562
|
+
* import { Doc } from 'magick-icons';
|
|
1563
|
+
*
|
|
1564
|
+
* <Doc size={24} className="text-blue-500" strokeWidth={2} />
|
|
1565
|
+
* ```
|
|
1566
|
+
*/
|
|
1567
|
+
declare const Doc: React.ForwardRefExoticComponent<Omit<DocProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1568
|
+
|
|
1569
|
+
/**
|
|
1570
|
+
* Props for the DocumentTextBold icon component
|
|
1571
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1572
|
+
*/
|
|
1573
|
+
interface DocumentTextBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1574
|
+
size?: number | string;
|
|
1575
|
+
}
|
|
1576
|
+
/**
|
|
1577
|
+
* DocumentTextBold icon component
|
|
1578
|
+
* @example
|
|
1579
|
+
* ```tsx
|
|
1580
|
+
* import { DocumentTextBold } from 'magick-icons';
|
|
1581
|
+
*
|
|
1582
|
+
* <DocumentTextBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1583
|
+
* ```
|
|
1584
|
+
*/
|
|
1585
|
+
declare const DocumentTextBold: React.ForwardRefExoticComponent<Omit<DocumentTextBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1586
|
+
|
|
1587
|
+
/**
|
|
1588
|
+
* Props for the DocumentUpload icon component
|
|
1589
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1590
|
+
*/
|
|
1591
|
+
interface DocumentUploadProps extends React.SVGProps<SVGSVGElement> {
|
|
1592
|
+
size?: number | string;
|
|
1593
|
+
}
|
|
1594
|
+
/**
|
|
1595
|
+
* DocumentUpload icon component
|
|
1596
|
+
* @example
|
|
1597
|
+
* ```tsx
|
|
1598
|
+
* import { DocumentUpload } from 'magick-icons';
|
|
1599
|
+
*
|
|
1600
|
+
* <DocumentUpload size={24} className="text-blue-500" strokeWidth={2} />
|
|
1601
|
+
* ```
|
|
1602
|
+
*/
|
|
1603
|
+
declare const DocumentUpload: React.ForwardRefExoticComponent<Omit<DocumentUploadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1604
|
+
|
|
1605
|
+
/**
|
|
1606
|
+
* Props for the Enter icon component
|
|
1607
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1608
|
+
*/
|
|
1609
|
+
interface EnterProps extends React.SVGProps<SVGSVGElement> {
|
|
1610
|
+
size?: number | string;
|
|
1611
|
+
}
|
|
1612
|
+
/**
|
|
1613
|
+
* Enter icon component
|
|
1614
|
+
* @example
|
|
1615
|
+
* ```tsx
|
|
1616
|
+
* import { Enter } from 'magick-icons';
|
|
1617
|
+
*
|
|
1618
|
+
* <Enter size={24} className="text-blue-500" strokeWidth={2} />
|
|
1619
|
+
* ```
|
|
1620
|
+
*/
|
|
1621
|
+
declare const Enter: React.ForwardRefExoticComponent<Omit<EnterProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1622
|
+
|
|
1623
|
+
/**
|
|
1624
|
+
* Props for the Excel icon component
|
|
1625
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1626
|
+
*/
|
|
1627
|
+
interface ExcelProps extends React.SVGProps<SVGSVGElement> {
|
|
1628
|
+
size?: number | string;
|
|
1629
|
+
}
|
|
1630
|
+
/**
|
|
1631
|
+
* Excel icon component
|
|
1632
|
+
* @example
|
|
1633
|
+
* ```tsx
|
|
1634
|
+
* import { Excel } from 'magick-icons';
|
|
1635
|
+
*
|
|
1636
|
+
* <Excel size={24} className="text-blue-500" strokeWidth={2} />
|
|
1637
|
+
* ```
|
|
1638
|
+
*/
|
|
1639
|
+
declare const Excel: React.ForwardRefExoticComponent<Omit<ExcelProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* Props for the File icon component
|
|
1643
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1644
|
+
*/
|
|
1645
|
+
interface FileProps extends React.SVGProps<SVGSVGElement> {
|
|
1646
|
+
size?: number | string;
|
|
1647
|
+
}
|
|
1648
|
+
/**
|
|
1649
|
+
* File icon component
|
|
1650
|
+
* @example
|
|
1651
|
+
* ```tsx
|
|
1652
|
+
* import { File } from 'magick-icons';
|
|
1653
|
+
*
|
|
1654
|
+
* <File size={24} className="text-blue-500" strokeWidth={2} />
|
|
1655
|
+
* ```
|
|
1656
|
+
*/
|
|
1657
|
+
declare const File: React.ForwardRefExoticComponent<Omit<FileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1658
|
+
|
|
1659
|
+
/**
|
|
1660
|
+
* Props for the Finance icon component
|
|
1661
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1662
|
+
*/
|
|
1663
|
+
interface FinanceProps extends React.SVGProps<SVGSVGElement> {
|
|
1664
|
+
size?: number | string;
|
|
1665
|
+
}
|
|
1666
|
+
/**
|
|
1667
|
+
* Finance icon component
|
|
1668
|
+
* @example
|
|
1669
|
+
* ```tsx
|
|
1670
|
+
* import { Finance } from 'magick-icons';
|
|
1671
|
+
*
|
|
1672
|
+
* <Finance size={24} className="text-blue-500" strokeWidth={2} />
|
|
1673
|
+
* ```
|
|
1674
|
+
*/
|
|
1675
|
+
declare const Finance: React.ForwardRefExoticComponent<Omit<FinanceProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1676
|
+
|
|
1677
|
+
/**
|
|
1678
|
+
* Props for the Flag icon component
|
|
1679
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1680
|
+
*/
|
|
1681
|
+
interface FlagProps extends React.SVGProps<SVGSVGElement> {
|
|
1682
|
+
size?: number | string;
|
|
1683
|
+
}
|
|
1684
|
+
/**
|
|
1685
|
+
* Flag icon component
|
|
1686
|
+
* @example
|
|
1687
|
+
* ```tsx
|
|
1688
|
+
* import { Flag } from 'magick-icons';
|
|
1689
|
+
*
|
|
1690
|
+
* <Flag size={24} className="text-blue-500" strokeWidth={2} />
|
|
1691
|
+
* ```
|
|
1692
|
+
*/
|
|
1693
|
+
declare const Flag: React.ForwardRefExoticComponent<Omit<FlagProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1694
|
+
|
|
1695
|
+
/**
|
|
1696
|
+
* Props for the Folder2 icon component
|
|
1697
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1698
|
+
*/
|
|
1699
|
+
interface Folder2Props extends React.SVGProps<SVGSVGElement> {
|
|
1700
|
+
size?: number | string;
|
|
1701
|
+
}
|
|
1702
|
+
/**
|
|
1703
|
+
* Folder2 icon component
|
|
1704
|
+
* @example
|
|
1705
|
+
* ```tsx
|
|
1706
|
+
* import { Folder2 } from 'magick-icons';
|
|
1707
|
+
*
|
|
1708
|
+
* <Folder2 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1709
|
+
* ```
|
|
1710
|
+
*/
|
|
1711
|
+
declare const Folder2: React.ForwardRefExoticComponent<Omit<Folder2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
* Props for the FolderDrawerOpen icon component
|
|
1715
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1716
|
+
*/
|
|
1717
|
+
interface FolderDrawerOpenProps extends React.SVGProps<SVGSVGElement> {
|
|
1718
|
+
size?: number | string;
|
|
1719
|
+
}
|
|
1720
|
+
/**
|
|
1721
|
+
* FolderDrawerOpen icon component
|
|
1722
|
+
* @example
|
|
1723
|
+
* ```tsx
|
|
1724
|
+
* import { FolderDrawerOpen } from 'magick-icons';
|
|
1725
|
+
*
|
|
1726
|
+
* <FolderDrawerOpen size={24} className="text-blue-500" strokeWidth={2} />
|
|
1727
|
+
* ```
|
|
1728
|
+
*/
|
|
1729
|
+
declare const FolderDrawerOpen: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1730
|
+
|
|
1731
|
+
/**
|
|
1732
|
+
* Props for the FolderDrawerOpenAddBold icon component
|
|
1733
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1734
|
+
*/
|
|
1735
|
+
interface FolderDrawerOpenAddBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1736
|
+
size?: number | string;
|
|
1737
|
+
}
|
|
1738
|
+
/**
|
|
1739
|
+
* FolderDrawerOpenAddBold icon component
|
|
1740
|
+
* @example
|
|
1741
|
+
* ```tsx
|
|
1742
|
+
* import { FolderDrawerOpenAddBold } from 'magick-icons';
|
|
1743
|
+
*
|
|
1744
|
+
* <FolderDrawerOpenAddBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1745
|
+
* ```
|
|
1746
|
+
*/
|
|
1747
|
+
declare const FolderDrawerOpenAddBold: React.ForwardRefExoticComponent<Omit<FolderDrawerOpenAddBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1748
|
+
|
|
1749
|
+
/**
|
|
1750
|
+
* Props for the FolderOpenBold icon component
|
|
1751
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1752
|
+
*/
|
|
1753
|
+
interface FolderOpenBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1754
|
+
size?: number | string;
|
|
1755
|
+
}
|
|
1756
|
+
/**
|
|
1757
|
+
* FolderOpenBold icon component
|
|
1758
|
+
* @example
|
|
1759
|
+
* ```tsx
|
|
1760
|
+
* import { FolderOpenBold } from 'magick-icons';
|
|
1761
|
+
*
|
|
1762
|
+
* <FolderOpenBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1763
|
+
* ```
|
|
1764
|
+
*/
|
|
1765
|
+
declare const FolderOpenBold: React.ForwardRefExoticComponent<Omit<FolderOpenBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1766
|
+
|
|
1767
|
+
/**
|
|
1768
|
+
* Props for the GeneralMagicko icon component
|
|
1769
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1770
|
+
*/
|
|
1771
|
+
interface GeneralMagickoProps extends React.SVGProps<SVGSVGElement> {
|
|
1772
|
+
size?: number | string;
|
|
1773
|
+
}
|
|
1774
|
+
/**
|
|
1775
|
+
* GeneralMagicko icon component
|
|
1776
|
+
* @example
|
|
1777
|
+
* ```tsx
|
|
1778
|
+
* import { GeneralMagicko } from 'magick-icons';
|
|
1779
|
+
*
|
|
1780
|
+
* <GeneralMagicko size={24} className="text-blue-500" strokeWidth={2} />
|
|
1781
|
+
* ```
|
|
1782
|
+
*/
|
|
1783
|
+
declare const GeneralMagicko: React.ForwardRefExoticComponent<Omit<GeneralMagickoProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1784
|
+
|
|
1785
|
+
/**
|
|
1786
|
+
* Props for the GripVertical icon component
|
|
1787
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1788
|
+
*/
|
|
1789
|
+
interface GripVerticalProps extends React.SVGProps<SVGSVGElement> {
|
|
1790
|
+
size?: number | string;
|
|
1791
|
+
}
|
|
1792
|
+
/**
|
|
1793
|
+
* GripVertical icon component
|
|
1794
|
+
* @example
|
|
1795
|
+
* ```tsx
|
|
1796
|
+
* import { GripVertical } from 'magick-icons';
|
|
1797
|
+
*
|
|
1798
|
+
* <GripVertical size={24} className="text-blue-500" strokeWidth={2} />
|
|
1799
|
+
* ```
|
|
1800
|
+
*/
|
|
1801
|
+
declare const GripVertical: React.ForwardRefExoticComponent<Omit<GripVerticalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1802
|
+
|
|
1803
|
+
/**
|
|
1804
|
+
* Props for the HeartBold icon component
|
|
1805
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1806
|
+
*/
|
|
1807
|
+
interface HeartBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1808
|
+
size?: number | string;
|
|
1809
|
+
}
|
|
1810
|
+
/**
|
|
1811
|
+
* HeartBold icon component
|
|
1812
|
+
* @example
|
|
1813
|
+
* ```tsx
|
|
1814
|
+
* import { HeartBold } from 'magick-icons';
|
|
1815
|
+
*
|
|
1816
|
+
* <HeartBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1817
|
+
* ```
|
|
1818
|
+
*/
|
|
1819
|
+
declare const HeartBold: React.ForwardRefExoticComponent<Omit<HeartBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1820
|
+
|
|
1821
|
+
/**
|
|
1822
|
+
* Props for the Hr icon component
|
|
1823
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1824
|
+
*/
|
|
1825
|
+
interface HrProps extends React.SVGProps<SVGSVGElement> {
|
|
1826
|
+
size?: number | string;
|
|
1827
|
+
}
|
|
1828
|
+
/**
|
|
1829
|
+
* Hr icon component
|
|
1830
|
+
* @example
|
|
1831
|
+
* ```tsx
|
|
1832
|
+
* import { Hr } from 'magick-icons';
|
|
1833
|
+
*
|
|
1834
|
+
* <Hr size={24} className="text-blue-500" strokeWidth={2} />
|
|
1835
|
+
* ```
|
|
1836
|
+
*/
|
|
1837
|
+
declare const Hr: React.ForwardRefExoticComponent<Omit<HrProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1838
|
+
|
|
1839
|
+
/**
|
|
1840
|
+
* Props for the HrSystem icon component
|
|
1841
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1842
|
+
*/
|
|
1843
|
+
interface HrSystemProps extends React.SVGProps<SVGSVGElement> {
|
|
1844
|
+
size?: number | string;
|
|
1845
|
+
}
|
|
1846
|
+
/**
|
|
1847
|
+
* HrSystem icon component
|
|
1848
|
+
* @example
|
|
1849
|
+
* ```tsx
|
|
1850
|
+
* import { HrSystem } from 'magick-icons';
|
|
1851
|
+
*
|
|
1852
|
+
* <HrSystem size={24} className="text-blue-500" strokeWidth={2} />
|
|
1853
|
+
* ```
|
|
1854
|
+
*/
|
|
1855
|
+
declare const HrSystem: React.ForwardRefExoticComponent<Omit<HrSystemProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1856
|
+
|
|
1857
|
+
/**
|
|
1858
|
+
* Props for the Icon3dcube1 icon component
|
|
1859
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1860
|
+
*/
|
|
1861
|
+
interface Icon3dcube1Props extends React.SVGProps<SVGSVGElement> {
|
|
1862
|
+
size?: number | string;
|
|
1863
|
+
}
|
|
1864
|
+
/**
|
|
1865
|
+
* Icon3dcube1 icon component
|
|
1866
|
+
* @example
|
|
1867
|
+
* ```tsx
|
|
1868
|
+
* import { Icon3dcube1 } from 'magick-icons';
|
|
1869
|
+
*
|
|
1870
|
+
* <Icon3dcube1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1871
|
+
* ```
|
|
1872
|
+
*/
|
|
1873
|
+
declare const Icon3dcube1: React.ForwardRefExoticComponent<Omit<Icon3dcube1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1874
|
+
|
|
1875
|
+
/**
|
|
1876
|
+
* Props for the Icon3square1 icon component
|
|
1877
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1878
|
+
*/
|
|
1879
|
+
interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
1880
|
+
size?: number | string;
|
|
1881
|
+
}
|
|
1882
|
+
/**
|
|
1883
|
+
* Icon3square1 icon component
|
|
1884
|
+
* @example
|
|
1885
|
+
* ```tsx
|
|
1886
|
+
* import { Icon3square1 } from 'magick-icons';
|
|
1887
|
+
*
|
|
1888
|
+
* <Icon3square1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
1889
|
+
* ```
|
|
1890
|
+
*/
|
|
1891
|
+
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1892
|
+
|
|
1893
|
+
/**
|
|
1894
|
+
* Props for the IconsaxAiScienceBold icon component
|
|
1895
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1896
|
+
*/
|
|
1897
|
+
interface IconsaxAiScienceBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1898
|
+
size?: number | string;
|
|
1899
|
+
}
|
|
1900
|
+
/**
|
|
1901
|
+
* IconsaxAiScienceBold icon component
|
|
1902
|
+
* @example
|
|
1903
|
+
* ```tsx
|
|
1904
|
+
* import { IconsaxAiScienceBold } from 'magick-icons';
|
|
1905
|
+
*
|
|
1906
|
+
* <IconsaxAiScienceBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1907
|
+
* ```
|
|
1908
|
+
*/
|
|
1909
|
+
declare const IconsaxAiScienceBold: React.ForwardRefExoticComponent<Omit<IconsaxAiScienceBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1910
|
+
|
|
1911
|
+
/**
|
|
1912
|
+
* Props for the IconsaxAttachCircleBold icon component
|
|
1913
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1914
|
+
*/
|
|
1915
|
+
interface IconsaxAttachCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1916
|
+
size?: number | string;
|
|
1917
|
+
}
|
|
1918
|
+
/**
|
|
1919
|
+
* IconsaxAttachCircleBold icon component
|
|
1920
|
+
* @example
|
|
1921
|
+
* ```tsx
|
|
1922
|
+
* import { IconsaxAttachCircleBold } from 'magick-icons';
|
|
1923
|
+
*
|
|
1924
|
+
* <IconsaxAttachCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1925
|
+
* ```
|
|
1926
|
+
*/
|
|
1927
|
+
declare const IconsaxAttachCircleBold: React.ForwardRefExoticComponent<Omit<IconsaxAttachCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1928
|
+
|
|
1929
|
+
/**
|
|
1930
|
+
* Props for the IconsaxBrainBold icon component
|
|
1931
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1932
|
+
*/
|
|
1933
|
+
interface IconsaxBrainBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1934
|
+
size?: number | string;
|
|
1935
|
+
}
|
|
1936
|
+
/**
|
|
1937
|
+
* IconsaxBrainBold icon component
|
|
1938
|
+
* @example
|
|
1939
|
+
* ```tsx
|
|
1940
|
+
* import { IconsaxBrainBold } from 'magick-icons';
|
|
1941
|
+
*
|
|
1942
|
+
* <IconsaxBrainBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1943
|
+
* ```
|
|
1944
|
+
*/
|
|
1945
|
+
declare const IconsaxBrainBold: React.ForwardRefExoticComponent<Omit<IconsaxBrainBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1946
|
+
|
|
1947
|
+
/**
|
|
1948
|
+
* Props for the IconsaxMonetizeBold icon component
|
|
1949
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1950
|
+
*/
|
|
1951
|
+
interface IconsaxMonetizeBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1952
|
+
size?: number | string;
|
|
1953
|
+
}
|
|
1954
|
+
/**
|
|
1955
|
+
* IconsaxMonetizeBold icon component
|
|
1956
|
+
* @example
|
|
1957
|
+
* ```tsx
|
|
1958
|
+
* import { IconsaxMonetizeBold } from 'magick-icons';
|
|
1959
|
+
*
|
|
1960
|
+
* <IconsaxMonetizeBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1961
|
+
* ```
|
|
1962
|
+
*/
|
|
1963
|
+
declare const IconsaxMonetizeBold: React.ForwardRefExoticComponent<Omit<IconsaxMonetizeBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1964
|
+
|
|
1965
|
+
/**
|
|
1966
|
+
* Props for the IconsaxPenBrushBold icon component
|
|
1967
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1968
|
+
*/
|
|
1969
|
+
interface IconsaxPenBrushBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1970
|
+
size?: number | string;
|
|
1971
|
+
}
|
|
1972
|
+
/**
|
|
1973
|
+
* IconsaxPenBrushBold icon component
|
|
1974
|
+
* @example
|
|
1975
|
+
* ```tsx
|
|
1976
|
+
* import { IconsaxPenBrushBold } from 'magick-icons';
|
|
1977
|
+
*
|
|
1978
|
+
* <IconsaxPenBrushBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1979
|
+
* ```
|
|
1980
|
+
*/
|
|
1981
|
+
declare const IconsaxPenBrushBold: React.ForwardRefExoticComponent<Omit<IconsaxPenBrushBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1982
|
+
|
|
1983
|
+
/**
|
|
1984
|
+
* Props for the IconsaxPeopleBold icon component
|
|
1985
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
1986
|
+
*/
|
|
1987
|
+
interface IconsaxPeopleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
1988
|
+
size?: number | string;
|
|
1989
|
+
}
|
|
1990
|
+
/**
|
|
1991
|
+
* IconsaxPeopleBold icon component
|
|
1992
|
+
* @example
|
|
1993
|
+
* ```tsx
|
|
1994
|
+
* import { IconsaxPeopleBold } from 'magick-icons';
|
|
1995
|
+
*
|
|
1996
|
+
* <IconsaxPeopleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
1997
|
+
* ```
|
|
1998
|
+
*/
|
|
1999
|
+
declare const IconsaxPeopleBold: React.ForwardRefExoticComponent<Omit<IconsaxPeopleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2000
|
+
|
|
2001
|
+
/**
|
|
2002
|
+
* Props for the IconsaxTaskSquareBold icon component
|
|
2003
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2004
|
+
*/
|
|
2005
|
+
interface IconsaxTaskSquareBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2006
|
+
size?: number | string;
|
|
2007
|
+
}
|
|
2008
|
+
/**
|
|
2009
|
+
* IconsaxTaskSquareBold icon component
|
|
2010
|
+
* @example
|
|
2011
|
+
* ```tsx
|
|
2012
|
+
* import { IconsaxTaskSquareBold } from 'magick-icons';
|
|
2013
|
+
*
|
|
2014
|
+
* <IconsaxTaskSquareBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2015
|
+
* ```
|
|
2016
|
+
*/
|
|
2017
|
+
declare const IconsaxTaskSquareBold: React.ForwardRefExoticComponent<Omit<IconsaxTaskSquareBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2018
|
+
|
|
2019
|
+
/**
|
|
2020
|
+
* Props for the IconsaxVideoCameraBold icon component
|
|
2021
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2022
|
+
*/
|
|
2023
|
+
interface IconsaxVideoCameraBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2024
|
+
size?: number | string;
|
|
2025
|
+
}
|
|
2026
|
+
/**
|
|
2027
|
+
* IconsaxVideoCameraBold icon component
|
|
2028
|
+
* @example
|
|
2029
|
+
* ```tsx
|
|
2030
|
+
* import { IconsaxVideoCameraBold } from 'magick-icons';
|
|
2031
|
+
*
|
|
2032
|
+
* <IconsaxVideoCameraBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2033
|
+
* ```
|
|
2034
|
+
*/
|
|
2035
|
+
declare const IconsaxVideoCameraBold: React.ForwardRefExoticComponent<Omit<IconsaxVideoCameraBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2036
|
+
|
|
2037
|
+
/**
|
|
2038
|
+
* Props for the IconsaxWord icon component
|
|
2039
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2040
|
+
*/
|
|
2041
|
+
interface IconsaxWordProps extends React.SVGProps<SVGSVGElement> {
|
|
2042
|
+
size?: number | string;
|
|
2043
|
+
}
|
|
2044
|
+
/**
|
|
2045
|
+
* IconsaxWord icon component
|
|
2046
|
+
* @example
|
|
2047
|
+
* ```tsx
|
|
2048
|
+
* import { IconsaxWord } from 'magick-icons';
|
|
2049
|
+
*
|
|
2050
|
+
* <IconsaxWord size={24} className="text-blue-500" strokeWidth={2} />
|
|
2051
|
+
* ```
|
|
2052
|
+
*/
|
|
2053
|
+
declare const IconsaxWord: React.ForwardRefExoticComponent<Omit<IconsaxWordProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2054
|
+
|
|
2055
|
+
/**
|
|
2056
|
+
* Props for the InProgress icon component
|
|
2057
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2058
|
+
*/
|
|
2059
|
+
interface InProgressProps extends React.SVGProps<SVGSVGElement> {
|
|
2060
|
+
size?: number | string;
|
|
2061
|
+
}
|
|
2062
|
+
/**
|
|
2063
|
+
* InProgress icon component
|
|
2064
|
+
* @example
|
|
2065
|
+
* ```tsx
|
|
2066
|
+
* import { InProgress } from 'magick-icons';
|
|
2067
|
+
*
|
|
2068
|
+
* <InProgress size={24} className="text-blue-500" strokeWidth={2} />
|
|
2069
|
+
* ```
|
|
2070
|
+
*/
|
|
2071
|
+
declare const InProgress: React.ForwardRefExoticComponent<Omit<InProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2072
|
+
|
|
2073
|
+
/**
|
|
2074
|
+
* Props for the InfoCircleBold icon component
|
|
2075
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2076
|
+
*/
|
|
2077
|
+
interface InfoCircleBoldProps extends React.SVGProps<SVGSVGElement> {
|
|
2078
|
+
size?: number | string;
|
|
2079
|
+
}
|
|
2080
|
+
/**
|
|
2081
|
+
* InfoCircleBold icon component
|
|
2082
|
+
* @example
|
|
2083
|
+
* ```tsx
|
|
2084
|
+
* import { InfoCircleBold } from 'magick-icons';
|
|
2085
|
+
*
|
|
2086
|
+
* <InfoCircleBold size={24} className="text-blue-500" strokeWidth={2} />
|
|
2087
|
+
* ```
|
|
2088
|
+
*/
|
|
2089
|
+
declare const InfoCircleBold: React.ForwardRefExoticComponent<Omit<InfoCircleBoldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2090
|
+
|
|
2091
|
+
/**
|
|
2092
|
+
* Props for the Legal icon component
|
|
2093
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2094
|
+
*/
|
|
2095
|
+
interface LegalProps extends React.SVGProps<SVGSVGElement> {
|
|
2096
|
+
size?: number | string;
|
|
2097
|
+
}
|
|
2098
|
+
/**
|
|
2099
|
+
* Legal icon component
|
|
2100
|
+
* @example
|
|
2101
|
+
* ```tsx
|
|
2102
|
+
* import { Legal } from 'magick-icons';
|
|
1419
2103
|
*
|
|
1420
2104
|
* <Legal size={24} className="text-blue-500" strokeWidth={2} />
|
|
1421
2105
|
* ```
|
|
@@ -1656,6 +2340,24 @@ interface NetworkProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1656
2340
|
*/
|
|
1657
2341
|
declare const Network: React.ForwardRefExoticComponent<Omit<NetworkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1658
2342
|
|
|
2343
|
+
/**
|
|
2344
|
+
* Props for the NotiDot icon component
|
|
2345
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2346
|
+
*/
|
|
2347
|
+
interface NotiDotProps extends React.SVGProps<SVGSVGElement> {
|
|
2348
|
+
size?: number | string;
|
|
2349
|
+
}
|
|
2350
|
+
/**
|
|
2351
|
+
* NotiDot icon component
|
|
2352
|
+
* @example
|
|
2353
|
+
* ```tsx
|
|
2354
|
+
* import { NotiDot } from 'magick-icons';
|
|
2355
|
+
*
|
|
2356
|
+
* <NotiDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
2357
|
+
* ```
|
|
2358
|
+
*/
|
|
2359
|
+
declare const NotiDot: React.ForwardRefExoticComponent<Omit<NotiDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2360
|
+
|
|
1659
2361
|
/**
|
|
1660
2362
|
* Props for the PA icon component
|
|
1661
2363
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1674,6 +2376,60 @@ interface PAProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1674
2376
|
*/
|
|
1675
2377
|
declare const PA: React.ForwardRefExoticComponent<Omit<PAProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1676
2378
|
|
|
2379
|
+
/**
|
|
2380
|
+
* Props for the PauseSquare icon component
|
|
2381
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2382
|
+
*/
|
|
2383
|
+
interface PauseSquareProps extends React.SVGProps<SVGSVGElement> {
|
|
2384
|
+
size?: number | string;
|
|
2385
|
+
}
|
|
2386
|
+
/**
|
|
2387
|
+
* PauseSquare icon component
|
|
2388
|
+
* @example
|
|
2389
|
+
* ```tsx
|
|
2390
|
+
* import { PauseSquare } from 'magick-icons';
|
|
2391
|
+
*
|
|
2392
|
+
* <PauseSquare size={24} className="text-blue-500" strokeWidth={2} />
|
|
2393
|
+
* ```
|
|
2394
|
+
*/
|
|
2395
|
+
declare const PauseSquare: React.ForwardRefExoticComponent<Omit<PauseSquareProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2396
|
+
|
|
2397
|
+
/**
|
|
2398
|
+
* Props for the Pdf icon component
|
|
2399
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2400
|
+
*/
|
|
2401
|
+
interface PdfProps extends React.SVGProps<SVGSVGElement> {
|
|
2402
|
+
size?: number | string;
|
|
2403
|
+
}
|
|
2404
|
+
/**
|
|
2405
|
+
* Pdf icon component
|
|
2406
|
+
* @example
|
|
2407
|
+
* ```tsx
|
|
2408
|
+
* import { Pdf } from 'magick-icons';
|
|
2409
|
+
*
|
|
2410
|
+
* <Pdf size={24} className="text-blue-500" strokeWidth={2} />
|
|
2411
|
+
* ```
|
|
2412
|
+
*/
|
|
2413
|
+
declare const Pdf: React.ForwardRefExoticComponent<Omit<PdfProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2414
|
+
|
|
2415
|
+
/**
|
|
2416
|
+
* Props for the PlayFilled icon component
|
|
2417
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2418
|
+
*/
|
|
2419
|
+
interface PlayFilledProps extends React.SVGProps<SVGSVGElement> {
|
|
2420
|
+
size?: number | string;
|
|
2421
|
+
}
|
|
2422
|
+
/**
|
|
2423
|
+
* PlayFilled icon component
|
|
2424
|
+
* @example
|
|
2425
|
+
* ```tsx
|
|
2426
|
+
* import { PlayFilled } from 'magick-icons';
|
|
2427
|
+
*
|
|
2428
|
+
* <PlayFilled size={24} className="text-blue-500" strokeWidth={2} />
|
|
2429
|
+
* ```
|
|
2430
|
+
*/
|
|
2431
|
+
declare const PlayFilled: React.ForwardRefExoticComponent<Omit<PlayFilledProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2432
|
+
|
|
1677
2433
|
/**
|
|
1678
2434
|
* Props for the Signature icon component
|
|
1679
2435
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1692,6 +2448,24 @@ interface SignatureProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1692
2448
|
*/
|
|
1693
2449
|
declare const Signature: React.ForwardRefExoticComponent<Omit<SignatureProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1694
2450
|
|
|
2451
|
+
/**
|
|
2452
|
+
* Props for the SperateDot icon component
|
|
2453
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
2454
|
+
*/
|
|
2455
|
+
interface SperateDotProps extends React.SVGProps<SVGSVGElement> {
|
|
2456
|
+
size?: number | string;
|
|
2457
|
+
}
|
|
2458
|
+
/**
|
|
2459
|
+
* SperateDot icon component
|
|
2460
|
+
* @example
|
|
2461
|
+
* ```tsx
|
|
2462
|
+
* import { SperateDot } from 'magick-icons';
|
|
2463
|
+
*
|
|
2464
|
+
* <SperateDot size={24} className="text-blue-500" strokeWidth={2} />
|
|
2465
|
+
* ```
|
|
2466
|
+
*/
|
|
2467
|
+
declare const SperateDot: React.ForwardRefExoticComponent<Omit<SperateDotProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2468
|
+
|
|
1695
2469
|
/**
|
|
1696
2470
|
* Props for the SquarePen1 icon component
|
|
1697
2471
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -1800,4 +2574,4 @@ interface XProps extends React.SVGProps<SVGSVGElement> {
|
|
|
1800
2574
|
*/
|
|
1801
2575
|
declare const X: React.ForwardRefExoticComponent<Omit<XProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1802
2576
|
|
|
1803
|
-
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, Bezier1, type Bezier1Props, Blend1, Blend11, type Blend11Props, type Blend1Props, Blend21, type Blend21Props, Blur1, type Blur1Props, 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, ChevronDown, type ChevronDownProps, ChevronLeft, type ChevronLeftProps, ChevronRight, type ChevronRightProps, ChevronUp, type ChevronUpProps, ChevronsUpDown, type ChevronsUpDownProps, CircleCheckFill, type CircleCheckFillProps, CloseCircle1, type CloseCircle1Props, DislikeBold, type DislikeBoldProps, DocumentTextBold, type DocumentTextBoldProps, DocumentUpload, type DocumentUploadProps, Enter, type EnterProps, Finance, type FinanceProps, Flag, type FlagProps, Folder2, type Folder2Props, FolderDrawerOpen, type FolderDrawerOpenProps, FolderOpenBold, type FolderOpenBoldProps, GripVertical, type GripVerticalProps, HeartBold, type HeartBoldProps, HrSystem, type HrSystemProps, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, Marketing, type MarketingProps, MessageEdit, type MessageEditProps, Network, type NetworkProps, PA, type PAProps, Signature, type SignatureProps, SquarePen1, type SquarePen1Props, Strikethrough, type StrikethroughProps, Tasks, type TasksProps, Trash, type TrashProps, Video, type VideoProps, X, type XProps };
|
|
2577
|
+
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiIcon, type AiIconProps, AiScience1, type AiScience1Props, ArchiveBold, type ArchiveBoldProps, ArrowDownBold, type ArrowDownBoldProps, ArrowRightBold, type ArrowRightBoldProps, ArrowUpBold, type ArrowUpBoldProps, Autobrightness1, type Autobrightness1Props, BackwardItem1, type BackwardItem1Props, Battery2bars1, type Battery2bars1Props, BatteryCharging1, type BatteryCharging1Props, BatteryDisable1, type BatteryDisable1Props, BatteryEmpty1, BatteryEmpty11, type BatteryEmpty11Props, type BatteryEmpty1Props, BatteryFull1, type BatteryFull1Props, 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, 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, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props, IconsaxAiScienceBold, type IconsaxAiScienceBoldProps, IconsaxAttachCircleBold, type IconsaxAttachCircleBoldProps, IconsaxBrainBold, type IconsaxBrainBoldProps, IconsaxMonetizeBold, type IconsaxMonetizeBoldProps, IconsaxPenBrushBold, type IconsaxPenBrushBoldProps, IconsaxPeopleBold, type IconsaxPeopleBoldProps, IconsaxTaskSquareBold, type IconsaxTaskSquareBoldProps, IconsaxVideoCameraBold, type IconsaxVideoCameraBoldProps, IconsaxWord, type IconsaxWordProps, InProgress, type InProgressProps, InfoCircleBold, type InfoCircleBoldProps, Legal, type LegalProps, LikeBold, type LikeBoldProps, Line, type LineProps, LinkSquare, type LinkSquareProps, ListEnd, type ListEndProps, ListOrdered, type ListOrderedProps, ListTodo, type ListTodoProps, Lock, type LockProps, MagickPotion, type MagickPotionProps, MagickoCheck, type MagickoCheckProps, MagickoList, type MagickoListProps, 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 };
|