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.
22 lines
673 B
22 lines
673 B
import React, { Component } from 'react';
|
|
import { Dropdown } from 'antd';
|
|
import classNames from 'classnames';
|
|
import styles from './index.less';
|
|
|
|
declare type OverlayFunc = () => React.ReactNode;
|
|
|
|
interface HeaderDropdownProps {
|
|
overlayClassName?: string;
|
|
overlay: React.ReactNode | OverlayFunc;
|
|
placement?: 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topCenter' | 'topRight' | 'bottomCenter';
|
|
}
|
|
|
|
export default class HeaderDropdown extends Component<HeaderDropdownProps> {
|
|
render() {
|
|
const { overlayClassName, ...props } = this.props;
|
|
|
|
return (
|
|
<Dropdown overlayClassName={classNames(styles.container, overlayClassName)} {...props} />
|
|
);
|
|
}
|
|
}
|
|
|