persona-community-5/.pnpm-store/v3/files/28/7e2a7eb5d2cff782ed352939f01f2a1f6f23790f880af62f1b74edc08f3c16701134cf2a5d6b08051b9a19edb252cde9854a20b5aa362eafd67feb0cc3cd98
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

10 lines
266 B
Plaintext

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 };