makearmy-app/node_modules/@radix-ui/react-use-rect/dist/index.d.mts
2025-09-22 10:37:53 -04:00

9 lines
266 B
TypeScript

import { Measurable } from '@radix-ui/rect';
/**
* Use this custom hook to get access to an element's rect (getBoundingClientRect)
* and observe it along time.
*/
declare function useRect(measurable: Measurable | null): DOMRect | undefined;
export { useRect };