import { forwardRef } from "react"; export const Input = forwardRef( (props: React.InputHTMLAttributes, ref: React.Ref) => { const { className = "", type, ...rest } = props; return ( ); } ); Input.displayName = "Input";