ant-design/components/radio/radio.jsx
2016-04-08 15:30:49 +08:00

25 lines
686 B
JavaScript

import RcRadio from 'rc-radio';
import React from 'react';
import classNames from 'classnames';
export default class Radio extends React.Component {
static defaultProps = {
prefixCls: 'ant-radio'
}
render() {
const { prefixCls, children, checked, disabled, className, style } = this.props;
const classString = classNames({
[`${prefixCls}`]: true,
[`${prefixCls}-checked`]: checked,
[`${prefixCls}-disabled`]: disabled,
[className]: !!className,
});
return (
<label className={classString} style={style}>
<RcRadio {...this.props} style={null} children={null} />
<span>{children}</span>
</label>
);
}
}