@engie-group/fluid-design-system-react
Version:
Fluid Design System React
14 lines (13 loc) • 488 B
TypeScript
import { FloatingFocusManagerProps } from '@floating-ui/react';
import React from 'react';
export type NJPopoverContentProps = React.PropsWithChildren & {
/**
* Whether the children should be rendered inline or in a portal.
*/
inline?: boolean;
/**
* Props for the FloatingFocusManager component.
*/
focusManagerProps?: Omit<FloatingFocusManagerProps, 'context' | 'children'>;
};
export declare const NJPopoverContent: React.FC<NJPopoverContentProps>;