import { isValidElement } from 'react';
export var ChildName = function (child) {
if (isValidElement(child) && typeof child.type !== 'string') {
var componentType = child.type;
return componentType.displayName || componentType.name || 'Component';
}
return 'Node';
};