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