diff --git a/src/components/Input.tsx b/src/components/Input.tsx new file mode 100644 index 0000000..7ce7e0c --- /dev/null +++ b/src/components/Input.tsx @@ -0,0 +1,19 @@ +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;