UNPKG

envoc-form

Version:

Envoc form components

9 lines (8 loc) 465 B
import React from 'react'; import { InputGroupProps } from './InputGroup'; export interface StringInputGroupProps extends Omit<InputGroupProps<string | undefined | null>, 'onChange' | 'type' | 'value'> { type?: 'color' | 'email' | 'search' | 'tel' | 'text' | 'url' | 'password' | 'textarea'; } /** Standard string input group. */ declare const StringInputGroupWithRef: React.ComponentType<StringInputGroupProps>; export default StringInputGroupWithRef;