| 9 | const formSchema = authFormSchema('sign-up') |
| 10 | |
| 11 | interface CustomInput { |
| 12 | control: Control<z.infer<typeof formSchema>>, |
| 13 | name: FieldPath<z.infer<typeof formSchema>>, |
| 14 | label: string, |
| 15 | placeholder: string |
| 16 | } |
| 17 | |
| 18 | const CustomInput = ({ control, name, label, placeholder }: CustomInput) => { |
| 19 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected