import * as React from 'react'; import Button from '../button'; import Icon from '../icon'; import Dropdown from './dropdown'; const ButtonGroup = Button.Group; import classNames from 'classnames'; import splitObject from '../_util/splitObject'; export default class DropdownButton extends React.Component { static defaultProps = { align: { points: ['tr', 'br'], overlay: { adjustX: 1, adjustY: 1, }, offset: [0, 4], targetOffset: [0, 0], }, type: 'default', }; render() { const [{ type, overlay, trigger, align, children, className, onClick }, restProps] = splitObject(this.props, ['type', 'overlay', 'trigger', 'align', 'children', 'className', 'onClick']); const cls = classNames({ 'ant-dropdown-button': true, [className]: !!className, }); return ( ); } }