UNPKG

285 BTypeScriptView Raw
1import { Placement } from "popper.js";
2import * as React from "react";
3import { PopperArrowProps } from "react-popper";
4export interface IPopoverArrowProps {
5 arrowProps: PopperArrowProps;
6 placement: Placement;
7}
8export declare const PopoverArrow: React.FC<IPopoverArrowProps>;