UNPKG

@rainbow-me/rainbowkit

Version:
19 lines (18 loc) 606 B
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 {};