import { TextInput } from "react-native"; import type { TextInputProps } from "react-native"; import Box from "./bases/Box"; import Text from "./bases/Text"; type Props = TextInputProps & { label: string; }; const Input = ({ label, ...rest }: Props) => { return ( {label} ); }; export default Input;