1 | import * as React from 'react';
|
2 | import { DropdownProps } from './Dropdown';
|
3 | import { PropsFromToggle } from './DropdownToggle';
|
4 | import { DropdownMenuVariant } from './DropdownMenu';
|
5 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
6 | export interface DropdownButtonProps extends Omit<DropdownProps, 'title'>, PropsFromToggle, BsPrefixProps {
|
7 | title: React.ReactNode;
|
8 | menuRole?: string;
|
9 | renderMenuOnMount?: boolean;
|
10 | rootCloseEvent?: 'click' | 'mousedown';
|
11 | menuVariant?: DropdownMenuVariant;
|
12 | flip?: boolean;
|
13 | }
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 | declare const DropdownButton: BsPrefixRefForwardingComponent<'div', DropdownButtonProps>;
|
24 | export default DropdownButton;
|