UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

29 lines (25 loc) 590 B
'use strict'; Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); function composeRefs(...refs) { return (node) => { const cleanUps = []; for (const ref of refs) { if (typeof ref === "function") { const cb = ref(node); if (typeof cb === "function") { cleanUps.push(cb); } } else if (ref) { ref.current = node; } } if (cleanUps.length) { return () => { for (const cleanUp of cleanUps) { cleanUp(); } }; } }; } exports.composeRefs = composeRefs;