import type { VariantProps } from "@shopify/restyle"; import type { Theme } from "@themes/Theme"; import type { TextInputProps } from "react-native"; import { TextInput } from "react-native"; import Box from "./bases/Box"; type Props = TextInputProps & VariantProps; const Input = ({ textVariants, ...rest }: Props) => { return ( ); }; export default Input;