ant-design/components/switch/index.tsx

19 lines
461 B
TypeScript
Raw Normal View History

import RcSwitch from 'rc-switch';
import React from 'react';
2015-12-06 16:39:01 +08:00
import classNames from 'classnames';
2015-07-08 19:47:45 +08:00
export default class Switch extends React.Component {
static defaultProps = {
prefixCls: 'ant-switch',
}
2015-07-08 19:47:45 +08:00
render() {
2015-12-06 16:39:01 +08:00
const { prefixCls, size, className } = this.props;
const cls = classNames({
[className]: !!className,
2016-01-27 12:00:27 +08:00
[`${prefixCls}-small`]: size === 'small',
2015-12-06 16:39:01 +08:00
});
return <RcSwitch className={cls} {...this.props} />;
2015-07-08 19:47:45 +08:00
}
}