UNPKG

@turnkey/react-wallet-kit

Version:

The easiest and most powerful way to integrate Turnkey's Embedded Wallets into your React applications.

16 lines 620 B
export interface PhoneInputBoxProps { value: string; onChange: (phone: string, formattedPhone: string, isValid: boolean) => void; onFocus?: () => void; onBlur?: () => void; onEnter?: () => void; } export declare function PhoneInputBox(props: PhoneInputBoxProps): import("react/jsx-runtime").JSX.Element; export interface SearchInputBoxProps { value: string; onChange: (value: string) => void; onClear?: () => void; placeholder?: string; } export declare function SearchInputBox(props: SearchInputBoxProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Inputs.d.ts.map