UNPKG

ink

Version:
9 lines 285 B
/** * Measure the dimensions of a particular `<Box>` element. */ const measureElement = (node) => ({ width: node.yogaNode?.getComputedWidth() ?? 0, height: node.yogaNode?.getComputedHeight() ?? 0, }); export default measureElement; //# sourceMappingURL=measure-element.js.map