import React from 'react'; import {Text, TextInput, View, StyleSheet} from 'react-native'; const DefaultTextInput = props => ( {props.label} {props.isFilled && Wajib diisi} ); const styles = StyleSheet.create({ input: { flex: 1, marginHorizontal: 10, marginTop: 5, borderWidth: 1, padding: 10, color: 'black', borderRadius: 10, }, label: { color: 'black', marginLeft: 10, fontSize: 12 }, errorLabel: { color: 'red', marginLeft: 10, marginBottom: 5, fontSize: 10 }, }); export default DefaultTextInput;