import React from 'react' import InputWrapper from './inputWrapper' type InputProps = React.InputHTMLAttributes & { label: string } export default function Input(props: InputProps) { const { label, name, required, type = 'text', ...rest } = props return ( ) }