@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
13 lines (12 loc) • 431 B
TypeScript
import React from 'react';
interface DydxSwitchTabProps {
onSwitch: (() => void) | undefined;
showSwitch: boolean;
onClose?: () => void;
}
export declare function DydxSwitchTabInternal({ limitLabel, onSwitch, }: {
limitLabel: string;
onSwitch: () => void;
}): React.JSX.Element;
export declare function DydxSwitchTab({ onSwitch, showSwitch, onClose, }: DydxSwitchTabProps): React.JSX.Element | null;
export {};