react-native-social-login-module
Version:
React Native social login
14 lines (13 loc) • 390 B
TypeScript
import * as React from "react";
interface ISocialButtonProps {
text?: string;
shadowColor?: string;
backgroundColor?: string;
width?: number | string;
height?: number | string;
component?: React.ReactNode;
loginButtonTextStyle?: any;
onPress: () => void;
}
declare const SocialButton: (props: ISocialButtonProps) => JSX.Element;
export default SocialButton;