UNPKG

@kryptogo/kryptogokit-sdk-react

Version:

KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.

19 lines (18 loc) 688 B
import React from 'react'; type Props = { onClick?: React.MouseEventHandler<HTMLElement> | undefined; as?: React.ElementType<any>; currentlySelected?: boolean; ready?: boolean; recent?: boolean; loading: boolean; id: string; name: string; iconUrl: string | (() => Promise<string>); iconBackground?: string; testId?: string; isKryptogoKitConnector?: boolean; downloadUrl?: string; }; export declare const ModalSelection: ({ as, currentlySelected, iconBackground, iconUrl, id, name, onClick, ready, recent, loading, testId, isKryptogoKitConnector, downloadUrl, ...urlProps }: Props) => import("react/jsx-runtime").JSX.Element; export {};