UNPKG

victory-core

Version:
15 lines 506 B
import React from "react"; import { VictoryCommonPrimitiveProps } from "../victory-util/common-props"; export interface ArcProps extends VictoryCommonPrimitiveProps { closedPath?: boolean; cx?: number; cy?: number; datum?: any; endAngle?: number; pathComponent?: React.ReactElement; r?: number; startAngle?: number; type?: string; } export declare const Arc: (initialProps: ArcProps) => React.DetailedReactHTMLElement<any, HTMLElement>; //# sourceMappingURL=arc.d.ts.map