import * as React from "react"; import { cn } from "@/lib/utils"; export interface InputProps extends React.InputHTMLAttributes { icon?: React.ReactNode; inputClassName?: string; } const Input = React.forwardRef( ({ className, inputClassName, icon, type, placeholder, ...props }, ref) => { return ( ); }, ); Input.displayName = "Input"; export { Input };