Repository URL to install this package:
|
Version:
0.0.2 ▾
|
@skava/packages
/
features
/
Authentication
/
SignInFlow
/
SocialSignIn
/
SocialSignInButton
/
SocialSignInButton.d.ts
|
|---|
/**
* @todo should be a simple styled component, 1 for each
*/
import * as React from 'react';
export interface SocialSignInProps {
google: boolean;
facebook: boolean;
twitter: boolean;
className?: string;
}
declare class SocialSignInButton extends React.PureComponent<SocialSignInProps> {
readonly provider: "google" | "twitter" | "facebook" | "unknown";
readonly className: string;
render(): JSX.Element;
}
export { SocialSignInButton };
export default SocialSignInButton;