@visx/shape
Version:
visx shape
10 lines • 453 B
TypeScript
import type { Ref } from 'react';
import type { AddSVGProps } from '../types';
export type CircleProps = {
/** className to apply to circle element. */
className?: string;
/** reference to circle element. */
innerRef?: Ref<SVGCircleElement>;
};
export default function Circle({ className, innerRef, ...restProps }: AddSVGProps<CircleProps, SVGCircleElement>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Circle.d.ts.map