@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
10 lines (9 loc) • 314 B
TypeScript
import React from 'react';
type Props = {
children?: React.ReactNode;
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
currentlySelected?: boolean;
testId?: string;
};
export declare const MenuButton: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>;
export {};