pouncejs
Version:
A collection of UI components from Panther labs
21 lines (20 loc) • 605 B
TypeScript
import React, { ReactNode } from 'react';
import { Alignment } from '../../utils/useAlignment';
export interface PopoverContentProps {
/**
* The position to expand the popover
*
* @default left
*/
alignment?: Alignment;
/**
* Whether the popover should remain open when a click outside it occurs
*/
persistOnOutsideClicks?: boolean;
/**
* @ignore
*/
children: ReactNode;
}
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>>;
export default _default;