@brizy/ui
Version:
React elements in Brizy style
10 lines (9 loc) • 365 B
JavaScript
import { BRZ_PREFIX } from "../constants";
export const getHeightStyle = (isOpen, isMeasured, elementRef) => {
if (isOpen && isMeasured && (elementRef === null || elementRef === void 0 ? void 0 : elementRef.current)) {
return {
[`--${BRZ_PREFIX}-collapsible-open`]: elementRef.current.scrollHeight + "px",
};
}
return {};
};