import { Indicator, HoverIndicator } from "./indicator" import { DotShape, ShapeProps } from "types" import ShapeGroup from "./shape-g" const dotRadius = 4 function BaseDot({ fill = "#999", stroke = "none", strokeWidth = 1, }: ShapeProps) { return ( <> ) } export default function Dot({ id, point }: DotShape) { return ( ) }