@proveanything/smartlinks-auth-ui
Version:
Lightweight React authentication UI components with bearer token support and Smartlinks SDK integration
11 lines • 352 B
TypeScript
import React from 'react';
import './AuthForm.css';
interface PhoneAuthFormProps {
onSubmit: (phoneNumber: string, verificationCode?: string) => Promise<void>;
onBack: () => void;
loading: boolean;
error?: string;
}
export declare const PhoneAuthForm: React.FC<PhoneAuthFormProps>;
export {};
//# sourceMappingURL=PhoneAuthForm.d.ts.map