@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
11 lines (10 loc) • 380 B
TypeScript
export interface MenuSubTargetProps {
/** Target element */
children: React.ReactNode;
/** Key of the prop that should be used to get element ref */
refProp?: string;
}
export declare function MenuSubTarget({ children, refProp }: MenuSubTargetProps): import("react/jsx-runtime").JSX.Element;
export declare namespace MenuSubTarget {
var displayName: string;
}