Skip to content
Snippets Groups Projects
password-field.js 485 B
Newer Older
import React from 'react'
import { TextInput } from 'react-native'
tina's avatar
tina committed
import styles, {secondaryColor} from '../../../styles'

export default function PasswordField(props) {
  return (
    <TextInput
      style={styles.passwordField}
      autoFocus={true}
      secureTextEntry={true}
      onChangeText={props.onChangeText}
      value={props.value}
      placeholder={props.placeholder}
tina's avatar
tina committed
      borderWidth={1}
      borderColor={secondaryColor}
      borderStyle={'solid'}