UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

11 lines (10 loc) 271 B
import React from "react"; interface AmountInputProps { label: string; value: number; disabled?: boolean; min?: number; onChange?: (value: number) => void; } declare const AmountInput: React.FC<AmountInputProps>; export default AmountInput;