magick-icons 0.1.158 → 0.1.160
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 +163 -1
- package/index.d.ts +163 -1
- package/index.js +151 -9
- package/index.js.map +1 -1
- package/index.mjs +142 -9
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -792,6 +792,168 @@ interface CardTick11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
792
792
|
*/
|
|
793
793
|
declare const CardTick11: React.ForwardRefExoticComponent<Omit<CardTick11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
794
|
|
|
795
|
+
/**
|
|
796
|
+
* Props for the CardanoAda icon component
|
|
797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
+
*/
|
|
799
|
+
interface CardanoAdaProps extends React.SVGProps<SVGSVGElement> {
|
|
800
|
+
size?: number | string;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* CardanoAda icon component
|
|
804
|
+
* @example
|
|
805
|
+
* ```tsx
|
|
806
|
+
* import { CardanoAda } from 'magick-icons';
|
|
807
|
+
*
|
|
808
|
+
* <CardanoAda size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
+
* ```
|
|
810
|
+
*/
|
|
811
|
+
declare const CardanoAda: React.ForwardRefExoticComponent<Omit<CardanoAdaProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* Props for the Cards1 icon component
|
|
815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
|
+
*/
|
|
817
|
+
interface Cards1Props extends React.SVGProps<SVGSVGElement> {
|
|
818
|
+
size?: number | string;
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* Cards1 icon component
|
|
822
|
+
* @example
|
|
823
|
+
* ```tsx
|
|
824
|
+
* import { Cards1 } from 'magick-icons';
|
|
825
|
+
*
|
|
826
|
+
* <Cards1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
|
+
* ```
|
|
828
|
+
*/
|
|
829
|
+
declare const Cards1: React.ForwardRefExoticComponent<Omit<Cards1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Props for the Cards11 icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface Cards11Props extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* Cards11 icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { Cards11 } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <Cards11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const Cards11: React.ForwardRefExoticComponent<Omit<Cards11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* Props for the Cd1 icon component
|
|
851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
+
*/
|
|
853
|
+
interface Cd1Props extends React.SVGProps<SVGSVGElement> {
|
|
854
|
+
size?: number | string;
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* Cd1 icon component
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* import { Cd1 } from 'magick-icons';
|
|
861
|
+
*
|
|
862
|
+
* <Cd1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
+
* ```
|
|
864
|
+
*/
|
|
865
|
+
declare const Cd1: React.ForwardRefExoticComponent<Omit<Cd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* Props for the Centralized1 icon component
|
|
869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
|
+
*/
|
|
871
|
+
interface Centralized1Props extends React.SVGProps<SVGSVGElement> {
|
|
872
|
+
size?: number | string;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* Centralized1 icon component
|
|
876
|
+
* @example
|
|
877
|
+
* ```tsx
|
|
878
|
+
* import { Centralized1 } from 'magick-icons';
|
|
879
|
+
*
|
|
880
|
+
* <Centralized1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare const Centralized1: React.ForwardRefExoticComponent<Omit<Centralized1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Props for the Chrome1 icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface Chrome1Props extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* Chrome1 icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { Chrome1 } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <Chrome1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const Chrome1: React.ForwardRefExoticComponent<Omit<Chrome1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* Props for the Chrome11 icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface Chrome11Props extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* Chrome11 icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { Chrome11 } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <Chrome11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const Chrome11: React.ForwardRefExoticComponent<Omit<Chrome11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* Props for the Coffee1 icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface Coffee1Props extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* Coffee1 icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { Coffee1 } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <Coffee1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const Coffee1: React.ForwardRefExoticComponent<Omit<Coffee1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* Props for the Coffee11 icon component
|
|
941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
|
+
*/
|
|
943
|
+
interface Coffee11Props extends React.SVGProps<SVGSVGElement> {
|
|
944
|
+
size?: number | string;
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* Coffee11 icon component
|
|
948
|
+
* @example
|
|
949
|
+
* ```tsx
|
|
950
|
+
* import { Coffee11 } from 'magick-icons';
|
|
951
|
+
*
|
|
952
|
+
* <Coffee11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
|
+
* ```
|
|
954
|
+
*/
|
|
955
|
+
declare const Coffee11: React.ForwardRefExoticComponent<Omit<Coffee11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
|
+
|
|
795
957
|
/**
|
|
796
958
|
* Props for the Icon3dcube1 icon component
|
|
797
959
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -828,4 +990,4 @@ interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
828
990
|
*/
|
|
829
991
|
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
992
|
|
|
831
|
-
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, 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, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props };
|
|
993
|
+
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, 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, 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, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props };
|
package/index.d.ts
CHANGED
|
@@ -792,6 +792,168 @@ interface CardTick11Props extends React.SVGProps<SVGSVGElement> {
|
|
|
792
792
|
*/
|
|
793
793
|
declare const CardTick11: React.ForwardRefExoticComponent<Omit<CardTick11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
794
794
|
|
|
795
|
+
/**
|
|
796
|
+
* Props for the CardanoAda icon component
|
|
797
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
798
|
+
*/
|
|
799
|
+
interface CardanoAdaProps extends React.SVGProps<SVGSVGElement> {
|
|
800
|
+
size?: number | string;
|
|
801
|
+
}
|
|
802
|
+
/**
|
|
803
|
+
* CardanoAda icon component
|
|
804
|
+
* @example
|
|
805
|
+
* ```tsx
|
|
806
|
+
* import { CardanoAda } from 'magick-icons';
|
|
807
|
+
*
|
|
808
|
+
* <CardanoAda size={24} className="text-blue-500" strokeWidth={2} />
|
|
809
|
+
* ```
|
|
810
|
+
*/
|
|
811
|
+
declare const CardanoAda: React.ForwardRefExoticComponent<Omit<CardanoAdaProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* Props for the Cards1 icon component
|
|
815
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
816
|
+
*/
|
|
817
|
+
interface Cards1Props extends React.SVGProps<SVGSVGElement> {
|
|
818
|
+
size?: number | string;
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* Cards1 icon component
|
|
822
|
+
* @example
|
|
823
|
+
* ```tsx
|
|
824
|
+
* import { Cards1 } from 'magick-icons';
|
|
825
|
+
*
|
|
826
|
+
* <Cards1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
827
|
+
* ```
|
|
828
|
+
*/
|
|
829
|
+
declare const Cards1: React.ForwardRefExoticComponent<Omit<Cards1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Props for the Cards11 icon component
|
|
833
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
834
|
+
*/
|
|
835
|
+
interface Cards11Props extends React.SVGProps<SVGSVGElement> {
|
|
836
|
+
size?: number | string;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* Cards11 icon component
|
|
840
|
+
* @example
|
|
841
|
+
* ```tsx
|
|
842
|
+
* import { Cards11 } from 'magick-icons';
|
|
843
|
+
*
|
|
844
|
+
* <Cards11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
845
|
+
* ```
|
|
846
|
+
*/
|
|
847
|
+
declare const Cards11: React.ForwardRefExoticComponent<Omit<Cards11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* Props for the Cd1 icon component
|
|
851
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
852
|
+
*/
|
|
853
|
+
interface Cd1Props extends React.SVGProps<SVGSVGElement> {
|
|
854
|
+
size?: number | string;
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* Cd1 icon component
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* import { Cd1 } from 'magick-icons';
|
|
861
|
+
*
|
|
862
|
+
* <Cd1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
863
|
+
* ```
|
|
864
|
+
*/
|
|
865
|
+
declare const Cd1: React.ForwardRefExoticComponent<Omit<Cd1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* Props for the Centralized1 icon component
|
|
869
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
870
|
+
*/
|
|
871
|
+
interface Centralized1Props extends React.SVGProps<SVGSVGElement> {
|
|
872
|
+
size?: number | string;
|
|
873
|
+
}
|
|
874
|
+
/**
|
|
875
|
+
* Centralized1 icon component
|
|
876
|
+
* @example
|
|
877
|
+
* ```tsx
|
|
878
|
+
* import { Centralized1 } from 'magick-icons';
|
|
879
|
+
*
|
|
880
|
+
* <Centralized1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
881
|
+
* ```
|
|
882
|
+
*/
|
|
883
|
+
declare const Centralized1: React.ForwardRefExoticComponent<Omit<Centralized1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Props for the Chrome1 icon component
|
|
887
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
888
|
+
*/
|
|
889
|
+
interface Chrome1Props extends React.SVGProps<SVGSVGElement> {
|
|
890
|
+
size?: number | string;
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* Chrome1 icon component
|
|
894
|
+
* @example
|
|
895
|
+
* ```tsx
|
|
896
|
+
* import { Chrome1 } from 'magick-icons';
|
|
897
|
+
*
|
|
898
|
+
* <Chrome1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
899
|
+
* ```
|
|
900
|
+
*/
|
|
901
|
+
declare const Chrome1: React.ForwardRefExoticComponent<Omit<Chrome1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* Props for the Chrome11 icon component
|
|
905
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
906
|
+
*/
|
|
907
|
+
interface Chrome11Props extends React.SVGProps<SVGSVGElement> {
|
|
908
|
+
size?: number | string;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* Chrome11 icon component
|
|
912
|
+
* @example
|
|
913
|
+
* ```tsx
|
|
914
|
+
* import { Chrome11 } from 'magick-icons';
|
|
915
|
+
*
|
|
916
|
+
* <Chrome11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
917
|
+
* ```
|
|
918
|
+
*/
|
|
919
|
+
declare const Chrome11: React.ForwardRefExoticComponent<Omit<Chrome11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* Props for the Coffee1 icon component
|
|
923
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
924
|
+
*/
|
|
925
|
+
interface Coffee1Props extends React.SVGProps<SVGSVGElement> {
|
|
926
|
+
size?: number | string;
|
|
927
|
+
}
|
|
928
|
+
/**
|
|
929
|
+
* Coffee1 icon component
|
|
930
|
+
* @example
|
|
931
|
+
* ```tsx
|
|
932
|
+
* import { Coffee1 } from 'magick-icons';
|
|
933
|
+
*
|
|
934
|
+
* <Coffee1 size={24} className="text-blue-500" strokeWidth={2} />
|
|
935
|
+
* ```
|
|
936
|
+
*/
|
|
937
|
+
declare const Coffee1: React.ForwardRefExoticComponent<Omit<Coffee1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* Props for the Coffee11 icon component
|
|
941
|
+
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
942
|
+
*/
|
|
943
|
+
interface Coffee11Props extends React.SVGProps<SVGSVGElement> {
|
|
944
|
+
size?: number | string;
|
|
945
|
+
}
|
|
946
|
+
/**
|
|
947
|
+
* Coffee11 icon component
|
|
948
|
+
* @example
|
|
949
|
+
* ```tsx
|
|
950
|
+
* import { Coffee11 } from 'magick-icons';
|
|
951
|
+
*
|
|
952
|
+
* <Coffee11 size={24} className="text-blue-500" strokeWidth={2} />
|
|
953
|
+
* ```
|
|
954
|
+
*/
|
|
955
|
+
declare const Coffee11: React.ForwardRefExoticComponent<Omit<Coffee11Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
956
|
+
|
|
795
957
|
/**
|
|
796
958
|
* Props for the Icon3dcube1 icon component
|
|
797
959
|
* @property {number | string} [size] - Size of the icon (default: 24)
|
|
@@ -828,4 +990,4 @@ interface Icon3square1Props extends React.SVGProps<SVGSVGElement> {
|
|
|
828
990
|
*/
|
|
829
991
|
declare const Icon3square1: React.ForwardRefExoticComponent<Omit<Icon3square1Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
830
992
|
|
|
831
|
-
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, 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, CardEdit1, type CardEdit1Props, CardPos1, type CardPos1Props, CardReceive1, type CardReceive1Props, CardRemove1, CardRemove11, type CardRemove11Props, type CardRemove1Props, CardSend1, type CardSend1Props, CardTick1, CardTick11, type CardTick11Props, type CardTick1Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props };
|
|
993
|
+
export { Add1, Add11, type Add11Props, type Add1Props, AddCircle1, type AddCircle1Props, AddItem1, type AddItem1Props, AiFlask1, type AiFlask1Props, AiScience1, type AiScience1Props, 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, 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, Chrome1, Chrome11, type Chrome11Props, type Chrome1Props, Coffee1, Coffee11, type Coffee11Props, type Coffee1Props, Icon3dcube1, type Icon3dcube1Props, Icon3square1, type Icon3square1Props };
|
package/index.js
CHANGED
|
@@ -74,6 +74,15 @@ __export(index_exports, {
|
|
|
74
74
|
CardSend1: () => CardSend1,
|
|
75
75
|
CardTick1: () => CardTick1,
|
|
76
76
|
CardTick11: () => CardTick11,
|
|
77
|
+
CardanoAda: () => CardanoAda,
|
|
78
|
+
Cards1: () => Cards1,
|
|
79
|
+
Cards11: () => Cards11,
|
|
80
|
+
Cd1: () => Cd1,
|
|
81
|
+
Centralized1: () => Centralized1,
|
|
82
|
+
Chrome1: () => Chrome1,
|
|
83
|
+
Chrome11: () => Chrome11,
|
|
84
|
+
Coffee1: () => Coffee1,
|
|
85
|
+
Coffee11: () => Coffee11,
|
|
77
86
|
Icon3dcube1: () => Icon3dcube1,
|
|
78
87
|
Icon3square1: () => Icon3square1
|
|
79
88
|
});
|
|
@@ -694,25 +703,149 @@ var CardTick11 = import_react44.default.forwardRef(
|
|
|
694
703
|
);
|
|
695
704
|
CardTick11.displayName = "CardTick11";
|
|
696
705
|
|
|
697
|
-
// dist/icons/
|
|
706
|
+
// dist/icons/CardanoAda.tsx
|
|
698
707
|
var import_react45 = __toESM(require("react"));
|
|
699
708
|
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
700
|
-
var
|
|
709
|
+
var CardanoAda = import_react45.default.forwardRef(
|
|
701
710
|
({ size, ...props }, ref) => {
|
|
702
|
-
return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { fill: "#1e293b", d: "
|
|
711
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { fill: "#1e293b", d: "M13.75 10.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m0-2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5M10.25 10.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m0-2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5M15.5 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m0-2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5M17.15 10.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M17.15 16.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M19.75 13.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M6.8 10.25a1.25 1.25 0 1 1 .001-2.5 1.25 1.25 0 0 1-.001 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M6.8 16.25a1.25 1.25 0 1 1 .001-2.5 1.25 1.25 0 0 1-.001 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M4.2 13.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M15.9 6.45a1.25 1.25 0 1 1 0-2.502 1.25 1.25 0 0 1 0 2.501m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M8.1 6.45a1.25 1.25 0 1 1 .001-2.502 1.25 1.25 0 0 1 0 2.501m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M12.05 7.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M15.9 20.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M8.1 20.25a1.25 1.25 0 1 1 .001-2.5 1.25 1.25 0 0 1 0 2.5m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M12.05 19.45a1.25 1.25 0 1 1 0-2.502 1.25 1.25 0 0 1 0 2.501m0-1.5c-.14 0-.25.11-.25.25 0 .28.5.28.5 0 0-.14-.11-.25-.25-.25M8.5 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m0-2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5M10.25 16.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m0-2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5M13.75 16.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m0-2c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5M12 3.45c-.56 0-1.01-.45-1.01-1s.45-1 1-1 1 .45 1 1-.43 1-.99 1M17.25 3.6c-.42 0-.76-.34-.76-.75s.34-.75.75-.75.76.34.76.75-.33.75-.75.75M6.75 3.6a.749.749 0 1 1 0-1.5h.01c.41 0 .75.34.75.75s-.34.75-.76.75M12 22.5c-.56 0-1.01-.45-1.01-1s.45-1 1-1 1 .45 1 1-.43 1-.99 1M17.25 21.85c-.42 0-.76-.34-.76-.75s.34-.75.75-.75.76.34.76.75-.33.75-.75.75M6.75 21.85a.749.749 0 1 1 0-1.5h.01c.41 0 .75.34.75.75s-.34.75-.76.75M1.55 13c-.55 0-1-.44-1-1 0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1M3.75 17.75c-.41 0-.75-.33-.75-.75v-.01c0-.41.34-.75.75-.75s.75.34.75.75-.34.76-.75.76M3.75 7.76c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.33.75.74v.01c0 .41-.34.75-.75.75M22.5 13c-.55 0-1-.44-1-1 0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1M20.3 17.75c-.41 0-.75-.33-.75-.75v-.01c0-.41.34-.75.75-.75s.75.34.75.75-.34.76-.75.76M20.3 7.76c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.33.75.75v.01c0 .4-.34.74-.75.74" }) });
|
|
703
712
|
}
|
|
704
713
|
);
|
|
705
|
-
|
|
714
|
+
CardanoAda.displayName = "CardanoAda";
|
|
706
715
|
|
|
707
|
-
// dist/icons/
|
|
716
|
+
// dist/icons/Cards1.tsx
|
|
708
717
|
var import_react46 = __toESM(require("react"));
|
|
709
718
|
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
710
|
-
var
|
|
719
|
+
var Cards1 = import_react46.default.forwardRef(
|
|
711
720
|
({ size, ...props }, ref) => {
|
|
712
721
|
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
713
|
-
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { fill: "#1e293b", d: "
|
|
714
|
-
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { fill: "#1e293b", d: "
|
|
715
|
-
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { fill: "#1e293b", d: "M19.
|
|
722
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { fill: "#1e293b", d: "M19 13.36H2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h17c.41 0 .75.34.75.75s-.34.75-.75.75" }),
|
|
723
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { fill: "#1e293b", d: "M15.22 21.75H5.78c-3.43 0-4.53-1.09-4.53-4.48v-6.99c0-2.69.61-4.28 3.71-4.46.26-.01.53-.02.82-.02h9.44c3.43 0 4.53 1.09 4.53 4.48v7.15c-.04 3.27-1.14 4.32-4.53 4.32M5.78 7.3c-.27 0-.52.01-.75.02-1.79.11-2.28.49-2.28 2.96v6.99c0 2.56.42 2.98 3.03 2.98h9.44c2.58 0 3-.4 3.03-2.83v-7.14c0-2.56-.42-2.98-3.03-2.98z" }),
|
|
724
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { fill: "#1e293b", d: "M19 18.18c-.19 0-.38-.07-.51-.2a.76.76 0 0 1-.24-.55v-7.15c0-2.56-.42-2.98-3.03-2.98H5.78c-.27 0-.52.01-.75.02a.76.76 0 0 1-.55-.21.75.75 0 0 1-.23-.55c.04-3.26 1.14-4.31 4.53-4.31h9.44c3.43 0 4.53 1.09 4.53 4.48v6.99c0 2.69-.61 4.28-3.71 4.46zM5.78 5.8h9.44c3.43 0 4.53 1.09 4.53 4.48v6.32c1.16-.21 1.5-.81 1.5-2.88V6.73c0-2.56-.42-2.98-3.03-2.98H8.78c-2.28 0-2.87.31-3 2.05M6.96 18.56H5.24c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h1.72a.749.749 0 1 1 0 1.5M12.55 18.56H9.11c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.44a.749.749 0 1 1 0 1.5" })
|
|
725
|
+
] });
|
|
726
|
+
}
|
|
727
|
+
);
|
|
728
|
+
Cards1.displayName = "Cards1";
|
|
729
|
+
|
|
730
|
+
// dist/icons/Cards11.tsx
|
|
731
|
+
var import_react47 = __toESM(require("react"));
|
|
732
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
733
|
+
var Cards11 = import_react47.default.forwardRef(
|
|
734
|
+
({ size, ...props }, ref) => {
|
|
735
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
736
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: "#1e293b", d: "M19.47 11.17h-7.58c-1.52 0-2.75-1.23-2.75-2.75V4c0-1.52 1.23-2.75 2.75-2.75h7.58c1.52 0 2.75 1.23 2.75 2.75v4.42c0 1.52-1.23 2.75-2.75 2.75m-7.58-8.42c-.69 0-1.25.56-1.25 1.25v4.42c0 .69.56 1.25 1.25 1.25h7.58c.69 0 1.25-.56 1.25-1.25V4c0-.69-.56-1.25-1.25-1.25z" }),
|
|
737
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: "#1e293b", d: "M21.47 5.91H9.89c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h11.58c.41 0 .75.34.75.75s-.34.75-.75.75M3.58 9.23a1.797 1.797 0 0 1-1.8-1.8V5c0-.65.34-1.24.9-1.56s1.24-.33 1.8 0l2.11 1.22c.56.33.9.91.9 1.56s-.34 1.24-.9 1.56L4.48 9c-.28.16-.59.24-.9.24zm0-4.54a.27.27 0 0 0-.15.04c-.06.03-.15.11-.15.26v2.43c0 .15.09.23.15.26s.17.08.3 0l2.11-1.22c.13-.08.15-.2.15-.26s-.02-.19-.15-.26L3.73 4.72a.3.3 0 0 0-.15-.04zM12.11 22.75H4.53c-1.52 0-2.75-1.23-2.75-2.75v-4.42c0-1.52 1.23-2.75 2.75-2.75h7.58c1.52 0 2.75 1.23 2.75 2.75V20c0 1.52-1.23 2.75-2.75 2.75m-7.58-8.42c-.69 0-1.25.56-1.25 1.25V20c0 .69.56 1.25 1.25 1.25h7.58c.69 0 1.25-.56 1.25-1.25v-4.42c0-.69-.56-1.25-1.25-1.25z" }),
|
|
738
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { fill: "#1e293b", d: "M14.11 17.49H2.53c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h11.58c.41 0 .75.34.75.75s-.34.75-.75.75M20.42 20.81c-.31 0-.62-.08-.9-.24l-2.11-1.22c-.56-.33-.9-.91-.9-1.56s.34-1.24.9-1.56l2.11-1.22a1.76 1.76 0 0 1 1.8 0c.56.33.9.91.9 1.56V19c0 .65-.34 1.24-.9 1.56-.28.16-.59.24-.9.24zm0-4.54s-.1.01-.15.04l-2.11 1.22c-.13.08-.15.2-.15.26s.02.19.15.26l2.11 1.22c.13.08.25.03.3 0 .06-.03.15-.11.15-.26v-2.43c0-.15-.09-.23-.15-.26a.3.3 0 0 0-.15-.04z" })
|
|
739
|
+
] });
|
|
740
|
+
}
|
|
741
|
+
);
|
|
742
|
+
Cards11.displayName = "Cards11";
|
|
743
|
+
|
|
744
|
+
// dist/icons/Cd1.tsx
|
|
745
|
+
var import_react48 = __toESM(require("react"));
|
|
746
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
747
|
+
var Cd1 = import_react48.default.forwardRef(
|
|
748
|
+
({ size, ...props }, ref) => {
|
|
749
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
750
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { fill: "#1e293b", d: "M12 22.75C6.07 22.75 1.25 17.93 1.25 12S6.07 1.25 12 1.25 22.75 6.07 22.75 12 17.93 22.75 12 22.75m0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75" }),
|
|
751
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { fill: "#1e293b", d: "M12 14.75c-1.52 0-2.75-1.23-2.75-2.75S10.48 9.25 12 9.25s2.75 1.23 2.75 2.75-1.23 2.75-2.75 2.75m0-4a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5" })
|
|
752
|
+
] });
|
|
753
|
+
}
|
|
754
|
+
);
|
|
755
|
+
Cd1.displayName = "Cd1";
|
|
756
|
+
|
|
757
|
+
// dist/icons/Centralized1.tsx
|
|
758
|
+
var import_react49 = __toESM(require("react"));
|
|
759
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
760
|
+
var Centralized1 = import_react49.default.forwardRef(
|
|
761
|
+
({ size, ...props }, ref) => {
|
|
762
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
763
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { fill: "#1e293b", d: "M7.68 7.69c-1.78 0-3.22-1.44-3.22-3.22S5.9 1.25 7.68 1.25s3.22 1.44 3.22 3.22-1.44 3.22-3.22 3.22m0-4.94a1.72 1.72 0 1 0 0 3.44 1.72 1.72 0 0 0 0-3.44" }),
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { fill: "#1e293b", d: "M7.68 10.16c-.41 0-.75-.34-.75-.75V6.94c0-.41.34-.75.75-.75s.75.34.75.75v2.47c0 .41-.34.75-.75.75M18.79 7.69c-1.78 0-3.22-1.44-3.22-3.22s1.44-3.22 3.22-3.22 3.22 1.44 3.22 3.22-1.44 3.22-3.22 3.22m0-4.94a1.72 1.72 0 1 0 0 3.44 1.72 1.72 0 0 0 0-3.44M16.32 23.75c-1.78 0-3.22-1.44-3.22-3.22s1.44-3.22 3.22-3.22 3.22 1.44 3.22 3.22-1.44 3.22-3.22 3.22m0-4.94a1.72 1.72 0 1 0 0 3.44 1.72 1.72 0 0 0 0-3.44" }),
|
|
765
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { fill: "#1e293b", d: "M7.68 20.04c-3.14 0-5.69-2.55-5.69-5.69s2.55-5.69 5.69-5.69 5.69 2.55 5.69 5.69-2.55 5.69-5.69 5.69m0-9.88c-2.31 0-4.19 1.88-4.19 4.19s1.88 4.19 4.19 4.19 4.19-1.88 4.19-4.19-1.88-4.19-4.19-4.19" }),
|
|
766
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { fill: "#1e293b", d: "M14.2 20.04c-.17 0-.34-.06-.48-.18l-2.2-1.85a.75.75 0 0 1-.09-1.06c.27-.32.74-.36 1.06-.09l2.2 1.85c.32.27.36.74.09 1.06-.15.18-.36.27-.57.27zM12 12.01c-.19 0-.38-.07-.53-.22a.754.754 0 0 1 0-1.06l4.94-4.94c.29-.29.77-.29 1.06 0s.29.77 0 1.06l-4.94 4.94c-.15.15-.34.22-.53.22" })
|
|
767
|
+
] });
|
|
768
|
+
}
|
|
769
|
+
);
|
|
770
|
+
Centralized1.displayName = "Centralized1";
|
|
771
|
+
|
|
772
|
+
// dist/icons/Chrome1.tsx
|
|
773
|
+
var import_react50 = __toESM(require("react"));
|
|
774
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
775
|
+
var Chrome1 = import_react50.default.forwardRef(
|
|
776
|
+
({ size, ...props }, ref) => {
|
|
777
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
778
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { fill: "#1e293b", d: "M12 22.75C6.07 22.75 1.25 17.93 1.25 12S6.07 1.25 12 1.25 22.75 6.07 22.75 12 17.93 22.75 12 22.75m0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75" }),
|
|
779
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { fill: "#1e293b", d: "M12 16.75c-2.62 0-4.75-2.13-4.75-4.75S9.38 7.25 12 7.25s4.75 2.13 4.75 4.75-2.13 4.75-4.75 4.75m0-8c-1.79 0-3.25 1.46-3.25 3.25s1.46 3.25 3.25 3.25 3.25-1.46 3.25-3.25S13.79 8.75 12 8.75" }),
|
|
780
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { fill: "#1e293b", d: "M21.17 8.75c-.05 0-.11-.01-.16-.02-2.94-.64-5.91-.64-8.85 0-.41.09-.8-.17-.89-.57-.09-.41.17-.8.57-.89 3.15-.69 6.34-.69 9.49 0 .4.09.66.49.57.89a.74.74 0 0 1-.73.59M8.54 14.75c-.21 0-.42-.09-.57-.26a24.8 24.8 0 0 1-4.71-8.12l.69-.31.71-.24.02.06a23.2 23.2 0 0 0 4.43 7.63c.27.31.24.79-.07 1.06-.15.12-.33.18-.5.18M10.88 22.69a.746.746 0 0 1-.55-1.25c2-2.2 3.48-4.75 4.4-7.58.13-.39.57-.65.96-.52s.62.51.5.9c-1.01 3.12-2.6 5.86-4.74 8.22-.16.15-.37.23-.57.23" })
|
|
781
|
+
] });
|
|
782
|
+
}
|
|
783
|
+
);
|
|
784
|
+
Chrome1.displayName = "Chrome1";
|
|
785
|
+
|
|
786
|
+
// dist/icons/Chrome11.tsx
|
|
787
|
+
var import_react51 = __toESM(require("react"));
|
|
788
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
789
|
+
var Chrome11 = import_react51.default.forwardRef(
|
|
790
|
+
({ size, ...props }, ref) => {
|
|
791
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
792
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { fill: "#1e293b", d: "M12 22.75c-2.87 0-5.56-1.12-7.59-3.15a10.7 10.7 0 0 1-3.15-7.61c0-2.87 1.12-5.56 3.15-7.59s4.73-3.15 7.6-3.15 5.56 1.12 7.59 3.15 3.15 4.74 3.15 7.61-1.12 5.56-3.15 7.59a10.68 10.68 0 0 1-7.6 3.15m0-20.01c-2.47 0-4.79.96-6.54 2.71a9.14 9.14 0 0 0-2.71 6.53c0 2.47.96 4.8 2.71 6.55a9.14 9.14 0 0 0 6.53 2.71c2.47 0 4.79-.96 6.54-2.71A9.14 9.14 0 0 0 21.24 12c0-2.47-.96-4.8-2.71-6.55A9.14 9.14 0 0 0 12 2.74" }),
|
|
793
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { fill: "#1e293b", d: "M12 17.3c-1.41 0-2.74-.55-3.75-1.55a5.33 5.33 0 0 1 0-7.49c1-1 2.33-1.56 3.75-1.56s2.74.55 3.75 1.55a5.33 5.33 0 0 1 0 7.49c-1 1-2.33 1.56-3.75 1.56m0-9.1c-1.01 0-1.97.4-2.69 1.12a3.82 3.82 0 0 0 0 5.37c1.44 1.44 3.93 1.44 5.37 0a3.82 3.82 0 0 0 0-5.37A3.76 3.76 0 0 0 12 8.21z" }),
|
|
794
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { fill: "#1e293b", d: "M11.52 22.75a.752.752 0 0 1-.65-1.12l4.42-7.73c.21-.36.67-.48 1.02-.28.36.21.48.66.28 1.02l-4.42 7.73c-.14.24-.39.38-.65.38M8.07 15.03c-.26 0-.51-.13-.65-.37L2.94 6.98a.752.752 0 1 1 1.3-.76l4.48 7.68a.752.752 0 0 1-.65 1.13M20.91 8.21H12c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h8.91c.41 0 .75.34.75.75s-.34.75-.75.75" })
|
|
795
|
+
] });
|
|
796
|
+
}
|
|
797
|
+
);
|
|
798
|
+
Chrome11.displayName = "Chrome11";
|
|
799
|
+
|
|
800
|
+
// dist/icons/Coffee1.tsx
|
|
801
|
+
var import_react52 = __toESM(require("react"));
|
|
802
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
803
|
+
var Coffee1 = import_react52.default.forwardRef(
|
|
804
|
+
({ size, ...props }, ref) => {
|
|
805
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
806
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { fill: "#1e293b", d: "M13.58 22.75H6.21c-2.74 0-4.96-2.23-4.96-4.96v-7.32c0-2.74 2.23-4.96 4.96-4.96h7.37c2.74 0 4.96 2.23 4.96 4.96v7.32c0 2.73-2.23 4.96-4.96 4.96M6.21 7.01c-1.91 0-3.46 1.55-3.46 3.46v7.32c0 1.91 1.55 3.46 3.46 3.46h7.37c1.91 0 3.46-1.55 3.46-3.46v-7.32c0-1.91-1.55-3.46-3.46-3.46zM5.5 4.75c-.41 0-.75-.34-.75-.75V2.25c0-.41.34-.75.75-.75s.75.34.75.75V4c0 .41-.34.75-.75.75M9.5 4.75c-.41 0-.75-.34-.75-.75V2.25c0-.41.34-.75.75-.75s.75.34.75.75V4c0 .41-.34.75-.75.75M13.5 4.75c-.41 0-.75-.34-.75-.75V2.25c0-.41.34-.75.75-.75s.75.34.75.75V4c0 .41-.34.75-.75.75" }),
|
|
807
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { fill: "#1e293b", d: "M17.79 18.12c-.41 0-.75-.34-.75-.75V8.95c0-.41.34-.75.75-.75 2.74 0 4.96 2.23 4.96 4.96s-2.23 4.96-4.96 4.96m.75-8.34v6.76a3.464 3.464 0 0 0 0-6.76" }),
|
|
808
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { fill: "#1e293b", d: "M17.51 12.75H2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h15.51c.41 0 .75.34.75.75s-.34.75-.75.75" })
|
|
809
|
+
] });
|
|
810
|
+
}
|
|
811
|
+
);
|
|
812
|
+
Coffee1.displayName = "Coffee1";
|
|
813
|
+
|
|
814
|
+
// dist/icons/Coffee11.tsx
|
|
815
|
+
var import_react53 = __toESM(require("react"));
|
|
816
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
817
|
+
var Coffee11 = import_react53.default.forwardRef(
|
|
818
|
+
({ size, ...props }, ref) => {
|
|
819
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
820
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: "#1e293b", d: "M20.5 22.25h-17c-1.24 0-2.25-1.01-2.25-2.25v-1c0-1.24 1.01-2.25 2.25-2.25h17c1.24 0 2.25 1.01 2.25 2.25v1c0 1.24-1.01 2.25-2.25 2.25m-17-4c-.41 0-.75.34-.75.75v1c0 .41.34.75.75.75h17c.41 0 .75-.34.75-.75v-1c0-.41-.34-.75-.75-.75z" }),
|
|
821
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: "#1e293b", d: "M19 18.25H5c-.41 0-.75-.34-.75-.75v-10c0-.41.34-.75.75-.75h14c.41 0 .75.34.75.75v10c0 .41-.34.75-.75.75m-13.25-1.5h12.5v-8.5H5.75z" }),
|
|
822
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: "#1e293b", d: "M21 8.25H3c-.96 0-1.75-.79-1.75-1.75v-1c0-2.07 1.68-3.75 3.75-3.75h14c2.07 0 3.75 1.68 3.75 3.75v1c0 .96-.79 1.75-1.75 1.75m-16-5c-1.24 0-2.25 1.01-2.25 2.25v1c0 .14.11.25.25.25h18c.14 0 .25-.11.25-.25v-1c0-1.24-1.01-2.25-2.25-2.25z" }),
|
|
823
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: "#1e293b", d: "M9 11.25c-.41 0-.75-.34-.75-.75v-3c0-.41.34-.75.75-.75s.75.34.75.75v3c0 .41-.34.75-.75.75M15 11.25c-.41 0-.75-.34-.75-.75v-3c0-.41.34-.75.75-.75s.75.34.75.75v3c0 .41-.34.75-.75.75" }),
|
|
824
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { fill: "#1e293b", d: "M10 11.25H8c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2c.41 0 .75.34.75.75s-.34.75-.75.75M16 11.25h-2c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h2c.41 0 .75.34.75.75s-.34.75-.75.75" })
|
|
825
|
+
] });
|
|
826
|
+
}
|
|
827
|
+
);
|
|
828
|
+
Coffee11.displayName = "Coffee11";
|
|
829
|
+
|
|
830
|
+
// dist/icons/Icon3dcube1.tsx
|
|
831
|
+
var import_react54 = __toESM(require("react"));
|
|
832
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
833
|
+
var Icon3dcube1 = import_react54.default.forwardRef(
|
|
834
|
+
({ size, ...props }, ref) => {
|
|
835
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { fill: "#1e293b", d: "M12 12.25c-.44 0-.88-.11-1.28-.32L4.21 8.42c-.59-.32-.96-.95-.96-1.65s.37-1.33.96-1.65l6.51-3.51c.8-.43 1.76-.43 2.55 0l6.51 3.51c.59.32.96.95.96 1.65s-.37 1.33-.96 1.65l-6.51 3.51c-.39.22-.83.32-1.27.32m0-9.47c-.19 0-.39.05-.57.15l-6.5 3.5c-.17.09-.18.28-.18.34s.01.25.18.33l6.51 3.51c.36.19.77.19 1.13 0l6.51-3.51c.16-.09.18-.28.18-.33 0-.06-.01-.25-.18-.33l-6.51-3.51c-.18-.1-.38-.15-.57-.15M9.78 22.72c-.28 0-.57-.07-.83-.2L2.89 19.5a2.97 2.97 0 0 1-1.64-2.66v-5.72c0-.65.33-1.24.88-1.58.56-.34 1.23-.37 1.81-.08L10 12.48c1.01.51 1.64 1.52 1.64 2.66v5.72c0 .65-.33 1.24-.88 1.58-.3.19-.64.28-.98.28M3.11 10.76c-.08 0-.15.03-.19.05-.06.04-.17.13-.17.31v5.72c0 .56.31 1.07.81 1.32l6.05 3.03c.16.08.29.02.35-.01.06-.04.17-.13.17-.31v-5.72c0-.56-.31-1.07-.81-1.32L3.27 10.8a.34.34 0 0 0-.16-.04M14.22 22.72c-.34 0-.68-.09-.98-.28-.55-.34-.88-.93-.88-1.58v-5.72c0-1.13.63-2.15 1.64-2.66l6.05-3.03c.58-.29 1.26-.26 1.81.08s.88.93.88 1.58v5.72c0 1.13-.63 2.15-1.64 2.66l-6.05 3.03c-.26.14-.55.2-.83.2m6.67-11.96c-.05 0-.1.01-.16.04l-6.05 3.03c-.5.25-.81.75-.81 1.32v5.72c0 .18.11.27.17.31s.19.09.35.01l6.05-3.03c.5-.25.81-.76.81-1.32v-5.72c0-.18-.11-.27-.17-.31a.4.4 0 0 0-.19-.05" }) });
|
|
836
|
+
}
|
|
837
|
+
);
|
|
838
|
+
Icon3dcube1.displayName = "Icon3dcube1";
|
|
839
|
+
|
|
840
|
+
// dist/icons/Icon3square1.tsx
|
|
841
|
+
var import_react55 = __toESM(require("react"));
|
|
842
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
843
|
+
var Icon3square1 = import_react55.default.forwardRef(
|
|
844
|
+
({ size, ...props }, ref) => {
|
|
845
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("svg", { ref, xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", ...props, children: [
|
|
846
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { fill: "#1e293b", d: "M9.37 22.75H4.62c-2.3 0-3.37-1.07-3.37-3.37v-4.75c0-2.31 1.07-3.38 3.37-3.38H7c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H12c.41 0 .75.34.75.75v2.38c0 2.3-1.07 3.37-3.38 3.37m-4.75-10c-1.45 0-1.87.42-1.87 1.88v4.75c0 1.45.42 1.87 1.87 1.87h4.75c1.46 0 1.88-.42 1.88-1.87v-1.63H9.62c-2.3 0-3.37-1.07-3.37-3.38v-1.62z" }),
|
|
847
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { fill: "#1e293b", d: "M14.37 17.75H9.62c-2.3 0-3.37-1.07-3.37-3.38V9.62c0-2.3 1.07-3.37 3.37-3.37H12c.41 0 .75.34.75.75v2.37c0 1.46.42 1.88 1.87 1.88H17c.41 0 .75.34.75.75v2.37c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88v-1.62h-1.63c-2.3 0-3.37-1.07-3.37-3.38V7.75z" }),
|
|
848
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { fill: "#1e293b", d: "M19.37 12.75h-4.75c-2.3 0-3.37-1.07-3.37-3.38V4.62c0-2.3 1.07-3.37 3.37-3.37h4.75c2.31 0 3.38 1.07 3.38 3.37v4.75c0 2.31-1.07 3.38-3.38 3.38m-4.75-10c-1.45 0-1.87.42-1.87 1.87v4.75c0 1.46.42 1.88 1.87 1.88h4.75c1.46 0 1.88-.42 1.88-1.88V4.62c0-1.45-.42-1.87-1.88-1.87z" })
|
|
716
849
|
] });
|
|
717
850
|
}
|
|
718
851
|
);
|
|
@@ -763,6 +896,15 @@ Icon3square1.displayName = "Icon3square1";
|
|
|
763
896
|
CardSend1,
|
|
764
897
|
CardTick1,
|
|
765
898
|
CardTick11,
|
|
899
|
+
CardanoAda,
|
|
900
|
+
Cards1,
|
|
901
|
+
Cards11,
|
|
902
|
+
Cd1,
|
|
903
|
+
Centralized1,
|
|
904
|
+
Chrome1,
|
|
905
|
+
Chrome11,
|
|
906
|
+
Coffee1,
|
|
907
|
+
Coffee11,
|
|
766
908
|
Icon3dcube1,
|
|
767
909
|
Icon3square1
|
|
768
910
|
});
|