@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
9 lines (8 loc) • 327 B
TypeScript
import React from 'react';
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: React.ForwardRefExoticComponent<MenuTargetProps & React.RefAttributes<HTMLElement>>;