@avalabs/k2-alpine 0.0.0-main-287bc10 → 0.0.0-main-bcc85aa
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/dist/components/Icons/Arbitrum.d.ts +3 -0
- package/dist/components/Icons/Base.d.ts +3 -0
- package/dist/components/Icons/Optimism.d.ts +3 -0
- package/dist/components/Icons/Solana.d.ts +1 -0
- package/dist/components/Icons/index.d.ts +21 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1568 -1360
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IconBaseProps } from 'react-icons';
|
|
2
|
+
export declare const ArbitrumColorIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const ArbitrumAchromaticIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IconBaseProps } from 'react-icons';
|
|
2
|
+
export declare const BaseColorIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const BaseAchromaticIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { IconBaseProps } from 'react-icons';
|
|
2
|
+
export declare const OptimismColorIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const OptimismAchromaticIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,5 @@ type SolanaIconColorScheme = {
|
|
|
4
4
|
};
|
|
5
5
|
export declare const Solana: ({ size, backgroundFill, ...rest }: IconBaseProps & SolanaIconColorScheme) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare const SolanaColorIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const SolanaAchromaticIcon: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -124,6 +124,12 @@ export declare const WithdrawIcon: import('react').ComponentType<IconBaseProps &
|
|
|
124
124
|
export declare const AirdropIcon: import('react').ComponentType<IconBaseProps & {
|
|
125
125
|
sx?: SxProps;
|
|
126
126
|
} & import('../..').WithSxProps>;
|
|
127
|
+
export declare const ArbitrumColorIcon: import('react').ComponentType<IconBaseProps & {
|
|
128
|
+
sx?: SxProps;
|
|
129
|
+
} & import('../..').WithSxProps>;
|
|
130
|
+
export declare const ArbitrumAchromaticIcon: import('react').ComponentType<IconBaseProps & {
|
|
131
|
+
sx?: SxProps;
|
|
132
|
+
} & import('../..').WithSxProps>;
|
|
127
133
|
export declare const AvalancheAchromaticIcon: import('react').ComponentType<IconBaseProps & {
|
|
128
134
|
sx?: SxProps;
|
|
129
135
|
} & import('../..').WithSxProps>;
|
|
@@ -133,6 +139,12 @@ export declare const AvalancheColorIcon: import('react').ComponentType<IconBaseP
|
|
|
133
139
|
export declare const AvalancheIcon: import('react').ComponentType<IconBaseProps & {
|
|
134
140
|
sx?: SxProps;
|
|
135
141
|
} & import('../..').WithSxProps>;
|
|
142
|
+
export declare const BaseColorIcon: import('react').ComponentType<IconBaseProps & {
|
|
143
|
+
sx?: SxProps;
|
|
144
|
+
} & import('../..').WithSxProps>;
|
|
145
|
+
export declare const BaseAchromaticIcon: import('react').ComponentType<IconBaseProps & {
|
|
146
|
+
sx?: SxProps;
|
|
147
|
+
} & import('../..').WithSxProps>;
|
|
136
148
|
export declare const BitcoinAchromaticIcon: import('react').ComponentType<IconBaseProps & {
|
|
137
149
|
sx?: SxProps;
|
|
138
150
|
} & import('../..').WithSxProps>;
|
|
@@ -181,6 +193,12 @@ export declare const MetaMaskIcon: import('react').ComponentType<IconBaseProps &
|
|
|
181
193
|
export declare const MonitoringIcon: import('react').ComponentType<IconBaseProps & {
|
|
182
194
|
sx?: SxProps;
|
|
183
195
|
} & import('../..').WithSxProps>;
|
|
196
|
+
export declare const OptimismColorIcon: import('react').ComponentType<IconBaseProps & {
|
|
197
|
+
sx?: SxProps;
|
|
198
|
+
} & import('../..').WithSxProps>;
|
|
199
|
+
export declare const OptimismAchromaticIcon: import('react').ComponentType<IconBaseProps & {
|
|
200
|
+
sx?: SxProps;
|
|
201
|
+
} & import('../..').WithSxProps>;
|
|
184
202
|
export declare const PChainIcon: import('react').ComponentType<IconBaseProps & {
|
|
185
203
|
sx?: SxProps;
|
|
186
204
|
} & import('../..').WithSxProps>;
|
|
@@ -193,6 +211,9 @@ export declare const RabbyIcon: import('react').ComponentType<IconBaseProps & {
|
|
|
193
211
|
export declare const SignatureIcon: import('react').ComponentType<IconBaseProps & {
|
|
194
212
|
sx?: SxProps;
|
|
195
213
|
} & import('../..').WithSxProps>;
|
|
214
|
+
export declare const SolanaAchromaticIcon: import('react').ComponentType<IconBaseProps & {
|
|
215
|
+
sx?: SxProps;
|
|
216
|
+
} & import('../..').WithSxProps>;
|
|
196
217
|
export declare const SolanaColorIcon: import('react').ComponentType<IconBaseProps & {
|
|
197
218
|
sx?: SxProps;
|
|
198
219
|
} & import('../..').WithSxProps>;
|