react-native-social-login-module
Version:
React Native social login
20 lines (16 loc) • 387 B
text/typescript
import { ViewStyle, TextStyle, StyleSheet } from "react-native";
interface Style {
container: ViewStyle;
}
export const _textInputStyle = (width: number | string): TextStyle => ({
width,
fontSize: 18,
paddingLeft: 32,
color: "#52535a",
paddingBottom: 12,
borderBottomWidth: 1,
borderColor: "#e1e1f2",
});
export default StyleSheet.create<Style>({
container: {},
});