import { Mail } from "@tamagui/lucide-icons"; import { Input, InputProps } from "@/ui/components/controls/forms/Input"; import { withController } from "@/ui/components/controls/forms/withController"; export const EmailInput = (props: InputProps) => { const { label = "Email", caption, error, onChangeText, ...rest } = props; return ( ); }; export const FormEmailInput = withController(EmailInput);