@avalabs/k2-alpine 0.0.0-main-2501d94 → 0.0.0-main-501410f

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.
@@ -0,0 +1,2 @@
1
+ import { IconBaseProps } from 'react-icons';
2
+ export declare const Kalshi: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { IconBaseProps } from 'react-icons';
2
+ export declare const Predictions: ({ size, ...rest }: IconBaseProps) => import("react/jsx-runtime").JSX.Element;
@@ -103,6 +103,9 @@ export declare const OutboundIcon: import('react').ComponentType<IconBaseProps &
103
103
  export declare const PortfolioIcon: import('react').ComponentType<IconBaseProps & {
104
104
  sx?: SxProps;
105
105
  } & import('../..').WithSxProps>;
106
+ export declare const PredictionsIcon: import('react').ComponentType<IconBaseProps & {
107
+ sx?: SxProps;
108
+ } & import('../..').WithSxProps>;
106
109
  /**
107
110
  * Transaction Icons
108
111
  */
@@ -328,6 +331,9 @@ export declare const InstagramIcon: import('react').ComponentType<IconBaseProps
328
331
  export declare const LinkedInIcon: import('react').ComponentType<IconBaseProps & {
329
332
  sx?: SxProps;
330
333
  } & import('../..').WithSxProps>;
334
+ export declare const KalshiIcon: import('react').ComponentType<IconBaseProps & {
335
+ sx?: SxProps;
336
+ } & import('../..').WithSxProps>;
331
337
  /**
332
338
  * Other icons
333
339
  */
@@ -1,2 +1,4 @@
1
1
  import { FC, PropsWithChildren } from 'react';
2
- export declare const ThemeInvert: FC<PropsWithChildren>;
2
+ export declare const ThemeInvert: FC<PropsWithChildren<{
3
+ active?: boolean;
4
+ }>>;