ReversiButton

@Composable
fun ReversiScope.ReversiButton(text: String, modifier: Modifier = Modifier, enabled: Boolean = true, shape: RoundedCornerShape = RoundedCornerShape(20.dp), border: BorderStroke? = null, onClick: () -> Unit)

Themed button component using the application's primary color. Supports custom shapes, borders, and disabled state styling.

Parameters

text

The text label for the button.

modifier

Composable modifier for layout adjustments.

onClick

Callback invoked when the button is clicked.

enabled

Whether the button is clickable.

shape

The shape of the button corners.

border

Optional custom border stroke.