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.
23 lines
474 B
23 lines
474 B
9 years ago
|
import React from 'react';
|
||
|
|
||
|
const prefix = 'ant-btn-group-';
|
||
|
|
||
|
export default class ButtonGroup extends React.Component {
|
||
|
render() {
|
||
|
const {size, className, ...others} = this.props;
|
||
|
|
||
|
let classSet = ['ant-btn-group'];
|
||
|
if (size) {
|
||
|
classSet.push(prefix + size);
|
||
|
}
|
||
|
if (className) {
|
||
|
classSet.push(className);
|
||
|
}
|
||
|
|
||
|
return <div {...others} className={classSet.join(' ')} />;
|
||
|
}
|
||
|
}
|
||
|
ButtonGroup.propTypes = {
|
||
|
size: React.PropTypes.string,
|
||
|
};
|