ButtonPrimitive
fun ButtonPrimitive(onClick: () -> Unit, backgroundColor: Color, modifier: Modifier = Modifier, backgroundBrush: Brush? = null, contentColor: Color = contentColorFor(backgroundColor), interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }, shape: Shape = OrbitTheme.shapes.normal, textStyle: TextStyle = OrbitTheme.typography.bodyNormalMedium.copy(textAlign = TextAlign.Center), contentArrangement: Arrangement.Horizontal = ButtonDefaults.HorizontalArrangement, contentPadding: PaddingValues = ButtonDefaults.ContentPadding, content: @Composable RowScope.() -> Unit)