UNPKG

388 BTypeScriptView Raw
1import { Placement } from "@popperjs/core";
2import * as React from "react";
3import { PopperArrowProps } from "react-popper";
4export declare const POPOVER_ARROW_SVG_SIZE = 30;
5export declare const TOOLTIP_ARROW_SVG_SIZE = 22;
6export interface PopoverArrowProps {
7 arrowProps: PopperArrowProps;
8 placement: Placement;
9}
10export declare const PopoverArrow: React.FC<PopoverArrowProps>;