Dashboard sipadu mbip
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.

123456789101112131415161718
  1. import * as React from 'react';
  2. import { BsPrefixComponent, SelectCallback } from './helpers';
  3. export interface DropdownMenuProps {
  4. show?: boolean;
  5. flip?: boolean;
  6. alignRight?: boolean;
  7. onSelect?: SelectCallback;
  8. rootCloseEvent?: 'click' | 'mousedown';
  9. popperConfig?: object;
  10. }
  11. declare class DropdownMenu<
  12. As extends React.ElementType = 'div'
  13. > extends BsPrefixComponent<As, DropdownMenuProps> {}
  14. export default DropdownMenu;