/* eslint-disable react/display-name */ import clsx from "clsx" import { forwardRef } from "react" type InputProps = React.ComponentPropsWithoutRef<"input"> const Input = forwardRef( ({ className, ...rest }, ref) => { return ( ) }, ) export default Input