Icon Button
Material Design standard icon button.
Equivalent to androidx.compose.material3.IconButton, but uses Modifier.defaultMinSize instead of Modifier.size to allow for larger icons.
Parameters
called when this button is clicked
the Modifier to be applied to this button
controls the enabled state of this button. When false
, this component will not respond to user input, and it will appear visually disabled and disabled to accessibility services.
ButtonColors that will be used to resolve the colors for this button in different states. See IconButtonDefaults.iconButtonColors.
the spacing values to apply internally between the container and the content
the MutableInteractionSource representing the stream of Interactions for this button. You can create and pass in your own remember
ed instance to observe Interactions and customize the appearance / behavior of this button in different states.