UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

8 lines (7 loc) 322 B
export interface MenuTargetProps { /** Target element */ children: React.ReactNode; /** Key of the prop used to get element ref @default `'ref'` */ refProp?: string; } export declare const MenuTarget: import("react").ForwardRefExoticComponent<MenuTargetProps & import("react").RefAttributes<HTMLElement>>;