import { PolylineShape, ShapeProps } from "types" import { Indicator, HoverIndicator } from "./indicator" import ShapeGroup from "./shape-g" function BasePolyline({ points, fill = "none", stroke = "#999", strokeWidth = 1, }: ShapeProps) { return ( <> ) } export default function Polyline({ id, point, points }: PolylineShape) { return ( ) }