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