@wfp/ui
Version:
WFP UI Kit
15 lines (12 loc) • 355 B
TypeScript
import * as React from 'react';
import { InputProps } from './Input';
declare namespace NumberInput {
interface NumberInputProps extends InputProps {
max?: number;
min?: number;
step?: number | string;
allowEmpty?: boolean;
}
}
declare class NumberInput extends React.Component<NumberInput.NumberInputProps> {}
export = NumberInput;