@funkit/connect 8.4.0-next.1 → 8.4.0

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,7 @@
1
+ import React, { type ReactNode } from 'react';
2
+ type Falsy = null | undefined | false;
3
+ type Section = (ReactNode | Falsy)[];
4
+ export declare function FunTxSummarySections({ sections, }: {
5
+ sections: (Section | Falsy)[];
6
+ }): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare function TotalTimeItem({ label, isLoaded, seconds, }: {
3
+ label: string;
4
+ isLoaded: boolean;
5
+ seconds: number;
6
+ }): React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import type { HistoricalCheckoutItem } from '../../domains/clientMetadata';
3
+ export declare function YouSendItem({ clientMetadata, isLoaded, }: {
4
+ clientMetadata: HistoricalCheckoutItem | undefined;
5
+ isLoaded: boolean;
6
+ }): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const CircleBitcoinIcon: ({ size }: {
3
+ size?: number;
4
+ }) => React.JSX.Element;
@@ -1,2 +1,4 @@
1
1
  import React from 'react';
2
- export declare const DollarIcon: () => React.JSX.Element;
2
+ export declare const DollarIcon: ({ size }: {
3
+ size?: number;
4
+ }) => React.JSX.Element;
@@ -1,4 +1,3 @@
1
- export declare const VERTICAL_SECTION_GAP = "18";
2
1
  export declare const PROFILE_SIDE_PADDING = "18";
3
2
  export declare const HOME_CHECKOUT_DISPLAY_ROW_HEIGHT = 52;
4
3
  export declare const HOME_TOKEN_BALANCE_DISPLAY_ROW_HEIGHT = 52;