App Chip
fun AppChip(modifier: Modifier = Modifier, label: String, isSelected: Boolean = false, hasDropDown: Boolean = false, dropDownOptions: List<String>? = null, onOptionSelected: (String) -> Unit = {}, onClick: () -> Unit)
A specialized chip component for the Design System.
Parameters
modifier
The Modifier to be applied to the chip.
label
The text to be displayed.
is Selected
Whether the chip is selected.
has Drop Down
Whether to show a dropdown icon.
drop Down Options
List of options to show in the dropdown menu.
on Option Selected
Callback invoked when a dropdown option is selected.
on Click
Callback when the chip is clicked.