UNPKG

react-native-social-login-module

Version:
14 lines (13 loc) 390 B
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;