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.

24 lines
434 B

import Tabs from 'rc-tabs';
import React from 'react';
const prefixCls = 'ant-tabs';
10 years ago
class AntTabs extends React.Component {
render() {
var sizeCls = '';
if (this.props.size === 'mini') {
sizeCls = prefixCls + '-mini';
}
return <Tabs {...this.props} className={sizeCls} />;
10 years ago
}
}
AntTabs.defaultProps = {
prefixCls: prefixCls,
size: 'normal'
10 years ago
};
AntTabs.TabPane = Tabs.TabPane;
10 years ago
export default AntTabs;