import React from 'react'; import _ from 'lodash'; export default function NodeShapeCircleStack(props) { const propsNoHighlight = _.clone(props); const Shape = props.shape; delete propsNoHighlight.highlighted; return ( ); }