@aptos-labs/wallet-adapter-mui-design
Version:
Aptos Wallet Adapter mui design
14 lines (12 loc) • 426 B
text/typescript
import type { WalletSortingOptions } from "@aptos-labs/wallet-adapter-react";
import type { Breakpoint } from "@mui/material";
export 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;
};
}