import { useResizeObserver } from "@mantine/hooks"; export function useElementOuterSize() { const [ref] = useResizeObserver(); const { width, height } = ref.current?.getBoundingClientRect() || { width: 0, height: 0, }; return { ref, width, height }; }