index.tsx 846 B

123456789101112131415161718192021222324252627
  1. import { Dropdown } from 'antd';
  2. import type { DropDownProps } from 'antd/es/dropdown';
  3. import React from 'react';
  4. import { createStyles } from 'antd-style';
  5. import classNames from 'classnames';
  6. const useStyles = createStyles(({ token }) => {
  7. return {
  8. dropdown: {
  9. [`@media screen and (max-width: ${token.screenXS}px)`]: {
  10. width: '100%',
  11. },
  12. },
  13. };
  14. });
  15. export type HeaderDropdownProps = {
  16. overlayClassName?: string;
  17. placement?: 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topCenter' | 'topRight' | 'bottomCenter';
  18. } & Omit<DropDownProps, 'overlay'>;
  19. const HeaderDropdown: React.FC<HeaderDropdownProps> = ({ overlayClassName: cls, ...restProps }) => {
  20. const { styles } = useStyles();
  21. return <Dropdown overlayClassName={classNames(styles.dropdown, cls)} {...restProps} />;
  22. };
  23. export default HeaderDropdown;