import { DetailedHTMLProps, InputHTMLAttributes } from "react"; interface InputProps extends DetailedHTMLProps, HTMLInputElement> { label?: string; error?: string; } const Input = (props: InputProps) => (
{props.error &&
{props.error}
}
); export default Input;