mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
23 lines
575 B
TypeScript
23 lines
575 B
TypeScript
import * as React from 'react';
|
|
import RcDropdown from 'rc-dropdown';
|
|
import splitObject from '../_util/splitObject';
|
|
|
|
export default class Dropdown extends React.Component {
|
|
static defaultProps = {
|
|
transitionName: 'slide-up',
|
|
prefixCls: 'ant-dropdown',
|
|
mouseEnterDelay: 0.15,
|
|
mouseLeaveDelay: 0.1,
|
|
};
|
|
|
|
render() {
|
|
const [{ overlay }, others] = splitObject(this.props, ['overlay']);
|
|
const menu = React.cloneElement(overlay, {
|
|
openTransitionName: 'zoom-big',
|
|
});
|
|
return (
|
|
<RcDropdown {...others} overlay={menu} />
|
|
);
|
|
}
|
|
}
|