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.
 
 

39 lines
854 B

import React from 'react';
import Pagination from 'rc-pagination';
import Select from '../select';
import zhCN from './locale/zh_CN';
class MiniSelect extends React.Component {
render() {
return <Select size="small" {...this.props} />;
}
}
MiniSelect.Option = Select.Option;
class AntPagination extends React.Component {
render() {
let className = this.props.className;
let selectComponentClass = Select;
if (this.props.size === 'small') {
className += ' mini';
selectComponentClass = MiniSelect;
}
return (
<Pagination selectComponentClass={selectComponentClass}
selectPrefixCls="ant-select"
{...this.props}
className={className} />
);
}
}
AntPagination.defaultProps = {
locale: zhCN,
className: '',
prefixCls: 'ant-pagination',
};
export default AntPagination;