@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
11 lines (10 loc) • 450 B
TypeScript
import type { WalletAccount } from '@mysten/wallet-standard';
type AccountDropdownMenuProps = {
currentAccount: WalletAccount;
};
export declare function AccountDropdownMenu({ currentAccount }: AccountDropdownMenuProps): import("react/jsx-runtime.js").JSX.Element;
export declare function AccountDropdownMenuItem({ account, active, }: {
account: WalletAccount;
active?: boolean;
}): import("react/jsx-runtime.js").JSX.Element;
export {};