ComboBox

@Composable
fun ComboBox(labelText: String, modifier: Modifier = Modifier, menuModifier: Modifier = Modifier, isEnabled: Boolean = true, outline: Outline = Outline.None, maxPopupHeight: Dp = Dp.Unspecified, interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, style: ComboBoxStyle = JewelTheme.comboBoxStyle, textStyle: TextStyle = JewelTheme.defaultTextStyle, onArrowDownPress: () -> Unit = {}, onArrowUpPress: () -> Unit = {}, onPopupStateChange: (Boolean) -> Unit = {}, popupContent: @Composable () -> Unit)