UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

11 lines 433 B
import './style.less'; import { DropdownButton } from './button'; import { Dropdown as InternalDropdown } from './dropdown'; export type { DropdownProps } from './dropdown'; export type { DropdownButtonProps, ItemType } from './button'; type CombinedDropdownType = typeof InternalDropdown & { Button: typeof DropdownButton; }; declare const Dropdown: CombinedDropdownType; export { Dropdown }; //# sourceMappingURL=index.d.ts.map