import { RectangleShape, ShapeProps } from "types" import { HoverIndicator, Indicator } from "./indicator" import ShapeGroup from "./shape-group" function BaseRectangle({ size, fill = "#999", stroke = "none", strokeWidth = 0, }: ShapeProps) { return ( <> ) } export default function Rectangle({ id, point, size }: RectangleShape) { return ( ) }