import React, { memo, CSSProperties } from 'react'; import cc from 'classcat'; interface MiniMapNodeProps { x: number; y: number; width: number; height: number; borderRadius: number; className: string; color: string; shapeRendering: string; strokeColor: string; strokeWidth: number; style?: CSSProperties; } const MiniMapNode = ({ x, y, width, height, style, color, strokeColor, strokeWidth, className, borderRadius, shapeRendering, }: MiniMapNodeProps) => { const { background, backgroundColor } = style || {}; const fill = (color || background || backgroundColor) as string; return ( ); }; MiniMapNode.displayName = 'MiniMapNode'; export default memo(MiniMapNode);