@aptos-labs/wallet-adapter-mui-design
Version:
Aptos Wallet Adapter mui design
14 lines (11 loc) • 624 B
TypeScript
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;
}
declare function WalletConnector({ networkSupport, handleNavigate, modalMaxWidth, ...walletSortingOptions }: WalletConnectorProps): react_jsx_runtime.JSX.Element;
export { WalletConnector, type WalletConnectorProps };