UNPKG

inspirar-innavanti

Version:

Libreria de apoyo para cualquier persona que quiera desarrollar aplicaciones de react native de forma facil

14 lines (13 loc) 504 B
import React from "react"; import { TextInput, StyleSheet } from "react-native"; const InputInspirar = ({ placeholder, value, onChange, style }) => { const defaultInputStyle = { borderColor: 'gray', borderWidth: 1, padding: 10, borderRadius: 5, }; const mergedStyle = StyleSheet.flatten([defaultInputStyle, style]); return (<TextInput placeholder={placeholder} value={value} onChangeText={onChange} style={mergedStyle}/>); }; export default InputInspirar;