import React, { InputHTMLAttributes } from "react"; interface InputProps extends InputHTMLAttributes { id: string; } export function Input({ id, ...props }: InputProps) { return ( ); }