// __SDEFILE__ - This file is a dependency for the stand-alone environment import React from 'react' // Components import { Point } from '../pattern/point.mjs' import { withinPartBounds } from '../pattern/utils.mjs' export const PointXray = ({ stackName, pointName, part, point, settings, components, t }) => { // Don't include parts outside the part bounding box if (!withinPartBounds(point, part)) return null return ( <> ) }