import * as React from "react"; import { TextInput, View, TextInputProps } from "react-native"; import { textFieldStyle } from "./style"; import Typography from "../typography"; interface Props extends TextInputProps { label?: any; placeholder: string; } function TextField(props: Props) { return ( {props.label} ); } export default TextField;