import { Dropdown } from 'antd'; import type { DropDownProps } from 'antd/es/dropdown'; import React from 'react'; import { useEmotionCss } from '@ant-design/use-emotion-css'; import classNames from 'classnames'; export type HeaderDropdownProps = { overlayClassName?: string; placement?: 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topCenter' | 'topRight' | 'bottomCenter'; } & Omit; const HeaderDropdown: React.FC = ({ overlayClassName: cls, ...restProps }) => { const className = useEmotionCss(({ token }) => { return { [`@media screen and (max-width: ${token.screenXS})`]: { width: '100%', }, }; }); return ; }; export default HeaderDropdown;