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.
 
 

18 lines
461 B

import RcSwitch from 'rc-switch';
import React from 'react';
import classNames from 'classnames';
export default class Switch extends React.Component {
static defaultProps = {
prefixCls: 'ant-switch',
}
render() {
const { prefixCls, size, className } = this.props;
const cls = classNames({
[className]: !!className,
[`${prefixCls}-small`]: size === 'small',
});
return <RcSwitch className={cls} {...this.props} />;
}
}