UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

19 lines (18 loc) 587 B
import { Factory } from '../../../core'; export interface ComboboxDropdownTargetProps { ref?: React.RefObject<HTMLElement>; /** 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("../../..").MantineComponent<{ props: ComboboxDropdownTargetProps; ref: HTMLElement; compound: true; }>;