ant-design/components/switch/index.tsx
2016-07-07 20:25:03 +08:00

19 lines
466 B
TypeScript

import RcSwitch from 'rc-switch';
import * as 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} />;
}
}