UNPKG

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