@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
20 lines (19 loc) • 633 B
TypeScript
import React from 'react';
type Props = {
onClick?: React.MouseEventHandler<HTMLElement> | undefined;
as?: React.ElementType;
currentlySelected?: boolean;
ready?: boolean;
recent?: boolean;
name: string;
iconUrl: string | (() => Promise<string>);
iconBackground?: string;
icon?: React.ReactNode;
testId?: string;
isFunkitSdkConnector?: boolean;
};
export declare const ModalSelection: {
({ as, currentlySelected, iconBackground, iconUrl, icon, name, onClick, ready, recent, testId, isFunkitSdkConnector, ...urlProps }: Props): React.JSX.Element;
displayName: string;
};
export {};