/// import { Point } from "./SvgConnector"; export interface ArrowProps { tip: Point; size: number; stroke?: string; rotateAngle?: number; } /** * Return an arrow path for svg * @param tip arrow tip point * @param size arrow size * @param stroke arrow filled color * @param rotateAngle arrow rotation angle, default = 0 */ export default function Arrow(props: ArrowProps): JSX.Element; //# sourceMappingURL=Arrow.d.ts.map