dropDownButtonRef

@Composable
fun IComponent.dropDownButtonRef(label: String? = null, icon: String? = null, style: ButtonStyle = ButtonStyle.BtnPrimary, size: ButtonSize? = null, disabled: Boolean? = null, autoClose: AutoClose = AutoClose.True, arrowVisible: Boolean = true, innerDropDown: Boolean = false, className: String? = null, id: String? = null, content: @Composable IButton.() -> Unit = {}): Button

Creates a dropdown button component, returning a reference.

Return

the dropdown button component

Parameters

label

the label of the dropdown button

icon

the icon of the dropdown button

style

the style of the dropdown button

size

the size of the dropdown button

disabled

the disabled state of the dropdown button

autoClose

the auto close state of the dropdown

arrowVisible

the arrow visibility state of the dropdown button

innerDropDown

the inner dropdown state of the dropdown button

className

the CSS class name

content

the content of the dropdown button