import React from 'react'; import Button from '../button'; import Icon from '../icon'; import Dropdown from './dropdown'; const ButtonGroup = Button.Group; import classNames from 'classnames'; 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 } = this.props; const cls = classNames({ 'ant-dropdown-button': true, className: !!className, }); return ( ); } }