UNPKG

@aptos-labs/wallet-adapter-mui-design

Version:
19 lines (15 loc) 697 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { WalletSortingOptions } from '@aptos-labs/wallet-adapter-react'; import { Breakpoint } from '@mui/material'; interface WalletConnectorProps extends WalletSortingOptions { networkSupport?: string; handleNavigate?: () => void; /** The max width of the wallet selector modal. Defaults to `xs`. */ modalMaxWidth?: Breakpoint; crossChainWallets?: { evm: boolean; solana: boolean; }; } declare function WalletConnector({ networkSupport, handleNavigate, modalMaxWidth, crossChainWallets, ...walletSortingOptions }: WalletConnectorProps): react_jsx_runtime.JSX.Element; export { WalletConnector };