import * as React from 'react'; import { type UseFormRegisterReturn } from 'react-hook-form'; import { cn } from '@/utils/cn'; import { FieldWrapper, FieldWrapperPassThroughProps } from './field-wrapper'; export type InputProps = React.InputHTMLAttributes & FieldWrapperPassThroughProps & { className?: string; registration: Partial; }; const Input = React.forwardRef( ({ className, type, label, error, registration, ...props }, ref) => { return ( ); }, ); Input.displayName = 'Input'; export { Input };