UNPKG

@visx/annotation

Version:
13 lines 538 B
/// <reference types="react" /> import { TextProps } from '@visx/text'; interface AnchorLineProps { anchorLineOrientation: 'horizontal' | 'vertical'; verticalAnchor: TextProps['verticalAnchor']; horizontalAnchor: TextProps['textAnchor']; anchorLineStroke: string; width: number; height: number; } export default function AnchorLine({ anchorLineOrientation, anchorLineStroke, verticalAnchor, horizontalAnchor, width, height, }: AnchorLineProps): JSX.Element; export {}; //# sourceMappingURL=LabelAnchorLine.d.ts.map