MessageReactions

fun MessageReactions(options: List<ReactionOptionItemState>, modifier: Modifier = Modifier, itemContent: @Composable RowScope.(ReactionOptionItemState) -> Unit = { option -> MessageReactionItem( modifier = Modifier .size(20.dp) .padding(2.dp) .align(Alignment.CenterVertically), option = option, ) })

Represents a reaction bubble with a list of reactions this message has.

Parameters

options

The list of reactions to display.

modifier

Modifier for styling.

itemContent

Composable that represents each reaction item in the row of message reactions.