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