UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

19 lines (18 loc) 557 B
import React from "react"; interface LabeledInputProps { name: string; type?: string; required?: boolean; value?: string | number; defaultValue?: string | number; min?: string | number; max?: string | number; label?: string; placeholder?: string; hasError?: boolean; extraClassName?: string; onChange?: React.ChangeEventHandler<HTMLInputElement>; onBlur?: React.FocusEventHandler<HTMLInputElement>; } declare const LabeledInput: React.FC<LabeledInputProps>; export default LabeledInput;