mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
21 lines
471 B
JavaScript
21 lines
471 B
JavaScript
import Switch from 'rc-switch';
|
|
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
prefixCls: 'ant-switch',
|
|
size: 'default',
|
|
};
|
|
},
|
|
render() {
|
|
const { prefixCls, size, className } = this.props;
|
|
const cls = classNames({
|
|
[className]: !!className,
|
|
[prefixCls + '-' + size]: true,
|
|
});
|
|
return <Switch className={cls} {...this.props} />;
|
|
}
|
|
});
|