import type { WidgetOptions } from "../../domain"; const DEFAULT_HEIGHT = 300; export function calculateHeight(options?: WidgetOptions, receivedHeight?: number): number { if (receivedHeight && receivedHeight > 0) { return receivedHeight; } if (options?.height) { return Number(options.height); } return DEFAULT_HEIGHT; }