@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
19 lines (18 loc) • 606 B
TypeScript
import React from 'react';
type Props = {
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
as?: React.ElementType<any>;
currentlySelected?: boolean;
ready?: boolean;
recent?: boolean;
name: string;
iconUrl: string | (() => Promise<string>);
iconBackground?: string;
testId?: string;
isRainbowKitConnector?: boolean;
};
export declare const ModalSelection: {
({ as, currentlySelected, iconBackground, iconUrl, name, onClick, ready, recent, testId, isRainbowKitConnector, ...urlProps }: Props): React.JSX.Element;
displayName: string;
};
export {};