@konstructio/ui
Version:
A set of reusable and customizable React components built for konstruct.io
28 lines (27 loc) • 764 B
JavaScript
import * as h from "react";
import { u as z } from "./index-DKfEnhKr.js";
function n(r) {
const [d, e] = h.useState(void 0);
return z(() => {
if (r) {
e({ width: r.offsetWidth, height: r.offsetHeight });
const f = new ResizeObserver((i) => {
if (!Array.isArray(i) || !i.length)
return;
const b = i[0];
let o, t;
if ("borderBoxSize" in b) {
const s = b.borderBoxSize, u = Array.isArray(s) ? s[0] : s;
o = u.inlineSize, t = u.blockSize;
} else
o = r.offsetWidth, t = r.offsetHeight;
e({ width: o, height: t });
});
return f.observe(r, { box: "border-box" }), () => f.unobserve(r);
} else
e(void 0);
}, [r]), d;
}
export {
n as u
};