interface InputProps extends React.InputHTMLAttributes { // You can add custom props here if needed } export function Input({ className, ...props }: InputProps) { return ( ); }