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));
};