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