import { type InputHTMLAttributes, forwardRef } from 'react' import { cn } from '@/shared/lib/cn' export const Input = forwardRef>( ({ className, type, ...props }, ref) => ( ), ) Input.displayName = 'Input'