UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

15 lines (14 loc) 633 B
import React from 'react'; import { NJPopover } from '../../popover'; export type NJMenuDropdownProps = React.ComponentPropsWithoutRef<'div'> & Omit<NJPopover.ContentProps, 'focusManagerProps'> & { /** * Whether the menu is scrollable or not */ scrollable?: boolean; }; export declare const NJMenuDropdown: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & Omit<NJPopover.ContentProps, "focusManagerProps"> & { /** * Whether the menu is scrollable or not */ scrollable?: boolean; } & React.RefAttributes<HTMLDivElement>>;