UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

15 lines (14 loc) 621 B
import { ElementProps, MantineStyleProp } from '../../../core'; export interface MenubarTargetProps extends ElementProps<'button'> { 'data-disabled'?: boolean; /** Target label */ children: React.ReactNode; /** Inline styles applied to the target button */ style?: MantineStyleProp; /** Key of the prop used to get element ref, useful for forwarding refs to custom components @default 'ref' */ refProp?: string; } export declare function MenubarTarget(props: MenubarTargetProps): import("react/jsx-runtime").JSX.Element; export declare namespace MenubarTarget { var displayName: string; }