UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

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