UNPKG

@proveanything/smartlinks-auth-ui

Version:

Lightweight React authentication UI components with bearer token support and Smartlinks SDK integration

15 lines 485 B
import React from 'react'; import type { AuthProvider } from '../types'; import './AuthForm.css'; interface ProviderButtonsProps { enabledProviders: AuthProvider[]; providerOrder?: string[]; onEmailLogin?: () => void; onGoogleLogin: () => Promise<void>; onPhoneLogin: () => void; onMagicLinkLogin?: () => void; loading: boolean; } export declare const ProviderButtons: React.FC<ProviderButtonsProps>; export {}; //# sourceMappingURL=ProviderButtons.d.ts.map