UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

18 lines (17 loc) 552 B
import { Factory } from '../../../core'; export interface ComboboxDropdownTargetProps { /** Target element */ children: React.ReactNode; /** Key of the prop that should be used to access element ref */ refProp?: string; } export type ComboboxDropdownTargetFactory = Factory<{ props: ComboboxDropdownTargetProps; ref: HTMLElement; compound: true; }>; export declare const ComboboxDropdownTarget: import("../../../core").MantineComponent<{ props: ComboboxDropdownTargetProps; ref: HTMLElement; compound: true; }>;