UNPKG

358 BTypeScriptView Raw
1import React from 'react';
2import { PresentationAttributesWithProps } from '../util/types';
3interface DotProps {
4 className?: string;
5 cx?: number;
6 cy?: number;
7 r?: number;
8 clipDot?: boolean;
9}
10export type Props = PresentationAttributesWithProps<DotProps, SVGCircleElement> & DotProps;
11export declare const Dot: React.FC<Props>;
12export {};