@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
14 lines (13 loc) • 510 B
TypeScript
import { FC } from 'react';
import { ClassStyleProps } from '../../../../../utils/types';
import { FundingTokenData } from '../types';
type TokenSelectScreenProps = ClassStyleProps & {
onClose: () => void;
onSelectToken: (token: FundingTokenData['symbol']) => void;
tokens: FundingTokenData[];
currentToken: FundingTokenData['symbol'];
showTokenAsPrimary: boolean;
exchangeRates: Record<string, number>;
};
export declare const TokenSelectScreen: FC<TokenSelectScreenProps>;
export {};