import { InputProps } from './forms' interface TextInputProps extends InputProps { label: string } const TextInput = ({ label, ...inputProps }: TextInputProps) => ( <> ) export default TextInput