ant-design/components/dropdown/dropdown.jsx

22 lines
504 B
React
Raw Normal View History

2015-12-02 15:18:15 +08:00
import React from 'react';
import RcDropdown from 'rc-dropdown';
2015-12-02 15:18:15 +08:00
export default class Dropdown extends React.Component {
static defaultProps = {
transitionName: 'slide-up',
prefixCls: 'ant-dropdown',
mouseEnterDelay: 0.15,
mouseLeaveDelay: 0.1,
}
2016-01-05 14:42:06 +08:00
render() {
const { overlay, ...otherProps } = this.props;
const menu = React.cloneElement(overlay, {
openTransitionName: 'zoom-big',
});
2015-12-02 15:18:15 +08:00
return (
<RcDropdown {...otherProps} overlay={menu} />
2015-12-02 15:18:15 +08:00
);
}
}