import * as React from "react"; import { twMerge } from "tailwind-merge"; export interface InputProps extends React.InputHTMLAttributes {} export const Input = React.forwardRef(({ className, ...props }, ref) => { return ( ); }); Input.displayName = "Input";