@particle-network/auth-core-modal
Version:
Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.
11 lines (10 loc) • 380 B
TypeScript
import { AuthType } from '@particle-network/auth-core';
import React from 'react';
interface Props {
supportAuthTypes: AuthType[];
preferredAuthType?: AuthType;
onPreferredAuthTypeChange?: (authType: AuthType) => void;
thirdpartyAuthLogin: (authType: AuthType) => void;
}
declare const SocialLogin: (props: Props) => React.JSX.Element;
export default SocialLogin;