UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

17 lines (16 loc) 518 B
import { Factory } from '../../core'; export interface ComboboxPopoverTargetProps { children: React.ReactNode; /** Key of the prop that is used to access element ref @default 'ref' */ refProp?: string; } export type ComboboxPopoverTargetFactory = Factory<{ props: ComboboxPopoverTargetProps; ref: HTMLElement; compound: true; }>; export declare const ComboboxPopoverTarget: import("../..").MantineComponent<{ props: ComboboxPopoverTargetProps; ref: HTMLElement; compound: true; }>;