import { forwardRef } from "preact/compat"; import { twMerge } from "tailwind-merge"; import type { InputHTMLAttributes, PreactDOMAttributes } from "preact"; export type InputProps = { className?: string; focusOnFirstRender?: boolean; } & InputHTMLAttributes & PreactDOMAttributes; const Input = forwardRef( ({ className, ...props }, ref) => { return ( ); }, ); export default Input;