import { forwardRef, type InputHTMLAttributes } from "react"; import { cn } from "@/lib/utils"; export interface InputProps extends InputHTMLAttributes { mono?: boolean; } export const Input = forwardRef( ({ className, mono, ...props }, ref) => ( ), ); Input.displayName = "Input";