@rsksmart/rif-ui
Version:
Exposes common components to be re used in RIF projects
13 lines (12 loc) • 421 B
TypeScript
import React, { FC } from 'react';
import { InputProps } from '@material-ui/core/Input';
export interface UnitsInputProps extends InputProps {
handleOnChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
handleOnBlur?: () => void;
maxValue?: number;
minValue?: number;
step?: number;
units?: string;
}
declare const UnitsInput: FC<UnitsInputProps>;
export default UnitsInput;