import React from 'react'; import { isContrastMode } from '../utils/contrast-utils'; export default function NodeShapeStack(props) { const dy = isContrastMode() ? 0.15 : 0.1; const highlightScale = [1, 1 + dy]; const Shape = props.shape; return ( ); }