whatsapp-auth
Version: 
Module for authenticating applications via WhatsApp
26 lines (25 loc) • 500 B
text/typescript
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
  button: {
    alignItems: 'center',
    backgroundColor: '#25D366',
    paddingVertical: 10,
    paddingHorizontal: 15,
    borderRadius: 50,
    flexDirection: 'row',
    justifyContent: 'space-between',
    marginVertical: 10,
    gap: 10,
    width: '100%',
  },
  icon: {
    color: '#fff',
    height: 20,
    width: 20,
  },
  buttonText: {
    color: '#fff',
    textAlign: 'center',
    flex: 1,
  },
});