UNPKG

@brizy/ui

Version:
7 lines (6 loc) 291 B
export const getDropdownHeight = (itemsCount, itemHeight, minItems, maxItems) => { const minHeight = itemHeight * minItems; const maxHeight = itemHeight * maxItems; const itemsHeight = itemsCount * itemHeight; return Math.max(minHeight, Math.min(maxHeight, itemsHeight)); };