You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
586 B

import React from 'react';
import classNames from 'classnames';
import RcInputNumber from 'rc-input-number';
export default class InputNumber extends React.Component {
static defaultProps = {
prefixCls: 'ant-input-number',
step: 1,
}
render() {
const { className, size, ...other } = this.props;
const inputNumberClass = classNames({
[`${this.props.prefixCls}-lg`]: size === 'large',
[`${this.props.prefixCls}-sm`]: size === 'small',
[className]: !!className,
});
return <RcInputNumber className={inputNumberClass} {...other} />;
}
}