@blueprintjs/core
Version:
Core styles & components
9 lines (8 loc) • 300 B
TypeScript
import { Placement } from "popper.js";
import * as React from "react";
import { PopperArrowProps } from "react-popper";
export interface IPopoverArrowProps {
arrowProps: PopperArrowProps;
placement: Placement;
}
export declare const PopoverArrow: React.FunctionComponent<IPopoverArrowProps>;