UNPKG

@emcsistemas/native-ui

Version:
8 lines 366 B
import { TextInput } from 'react-native'; import { makeBaseTextAreaStyle } from '../../styles/styles.factory'; const EMCTextArea = (props) => { const baseStyle = props.style ?? makeBaseTextAreaStyle(props); return (<TextInput style={baseStyle} {...props} multiline autoComplete='off'/>); }; export default EMCTextArea; //# sourceMappingURL=EMCTextArea.js.map