UNPKG

cookie-test-app

Version:

testing

16 lines (15 loc) 409 B
import React from 'react'; import './QuantityInput.scss'; interface QuantityInputProps { handleValue: (value: number) => void; flat?: boolean; limit?: number; loading?: boolean; onClick?: () => void; outOfStock?: boolean; small?: boolean; tooltip?: string; defaultValue: number; } export declare const QuantityInput: React.FC<QuantityInputProps>; export {};