@blueprintjs/core
Version:
Core styles & components
10 lines (9 loc) • 318 B
TypeScript
/// <reference types="react" />
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.SFC<IPopoverArrowProps>;