react-oauth2
Version:
    • 518 B
TypeScript
import React from 'react';
interface FacebookButtonProps {
url?: string;
clientId: string;
clientSecret: string;
redirectUri: string;
authorizationUrl?: string;
scope?: string;
width?: number;
height?: number;
className?: string;
style?: React.CSSProperties;
disabled?: boolean;
children: React.ReactNode;
callback: (error: Error | null, result: any | null) => void;
}
export declare const FacebookOauth2: React.FC<FacebookButtonProps>;
export {};