UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

19 lines (18 loc) 777 B
import React from 'react'; interface YouPayYouReceiveProps { payLabel?: string; receiveLabel?: string; payTokenSymbol: string; receiveTokenSymbol: string; payTokenIconSrc: string; receiveTokenIconSrc: string; payTokenChainId?: string; receiveTokenChainId?: string; showYouPaySection?: boolean; prioritizeDefaults?: boolean; } export declare const YouPayYouReceive: ({ payLabel, receiveLabel, payTokenSymbol, receiveTokenSymbol, payTokenIconSrc, receiveTokenIconSrc, payTokenChainId, receiveTokenChainId, showYouPaySection, prioritizeDefaults, }: YouPayYouReceiveProps) => React.JSX.Element; export declare const YouPayYouReceiveBottomBarLayoutWrapper: ({ children, }: { children: React.ReactNode; }) => React.JSX.Element; export {};