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.
|
|
|
import InternalDropdown from './dropdown';
|
|
|
|
import DropdownButton from './dropdown-button';
|
|
|
|
|
|
|
|
export type { DropdownProps as DropDownProps, DropdownProps } from './dropdown';
|
|
|
|
export type { DropdownButtonProps, DropdownButtonType } from './dropdown-button';
|
|
|
|
|
|
|
|
const Dropdown = InternalDropdown as typeof InternalDropdown & {
|
|
|
|
Button: typeof DropdownButton;
|
|
|
|
};
|
|
|
|
Dropdown.Button = DropdownButton;
|
|
|
|
|
|
|
|
export default Dropdown;
|