import { cn } from '@/app/_utils/cn'; import { InputHTMLAttributes, forwardRef } from 'react'; export interface InputProps extends InputHTMLAttributes { } const Input = forwardRef( ({ className, type, ...props }, ref) => { return ( ); } ); Input.displayName = 'Input'; export { Input };