makearmy-app/node_modules/@radix-ui/react-use-rect/dist/index.d.ts

10 lines
266 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
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 };