UNPKG

@funkit/connect

Version:

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

13 lines (12 loc) 572 B
import React from 'react'; import { type ConnectablePaymentMethodInfo } from '../../../domains/paymentMethods'; interface ConnectedSourceProps { targetChainId: string; paymentInfo: ConnectablePaymentMethodInfo; selectedPaymentInfo: ConnectablePaymentMethodInfo | null; showSelectedCheckmark?: boolean; onSelect: () => void; isDisabled?: boolean; } export declare const ConnectedSource: ({ paymentInfo, targetChainId, selectedPaymentInfo, showSelectedCheckmark, onSelect, isDisabled, }: ConnectedSourceProps) => React.JSX.Element | null; export {};