ant-design/components/input-number/index.jsx
2016-03-30 10:58:37 +08:00

23 lines
580 B
JavaScript

import React from 'react';
import classNames from 'classnames';
import InputNumber from 'rc-input-number';
export default React.createClass({
getDefaultProps() {
return {
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 <InputNumber className={inputNumberClass} {...other} />;
}
});