import { ComponentProps } from "react"; import { cn } from "@/lib/style"; export type InputProps = ComponentProps<"input"> & { fontMono?: true; }; export const Input = ({ className, fontMono, ...props }: InputProps) => ( );