UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

24 lines 854 B
import { default as React } from 'react'; import { FormFieldStyles } from '../../../theme'; export interface USDFieldProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange' | 'value' | 'style' | 'type' | 'inputMode'> { initialValue?: string; onChange?: (value: string) => void; label?: string; min?: number; max?: number; precision?: number; enableIncrement?: boolean; incrementStep?: number; initialDelay?: number; repeatInterval?: number; value?: string; placeholder?: string; id?: string; onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void; onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void; helperText?: string; styles?: FormFieldStyles; } declare const USDField: React.FC<USDFieldProps>; export default USDField; //# sourceMappingURL=index.d.ts.map