@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
17 lines (16 loc) • 637 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core';
import type { PopoverStylesNames } from '../Popover';
export interface PopoverDropdownProps extends BoxProps, CompoundStylesApiProps<PopoverDropdownFactory>, ElementProps<'div'> {
}
export type PopoverDropdownFactory = Factory<{
props: PopoverDropdownProps;
ref: HTMLDivElement;
stylesNames: PopoverStylesNames;
compound: true;
}>;
export declare const PopoverDropdown: import("../../../core").MantineComponent<{
props: PopoverDropdownProps;
ref: HTMLDivElement;
stylesNames: PopoverStylesNames;
compound: true;
}>;