fun Button(onClick
: () -> Unit, modifier
: Modifier = Modifier
, backgroundColor
: Color = AndromedaTheme.colors.primaryColors.active
, contentColor
: Color = contentColorFor(backgroundColor = backgroundColor)
, interactionSource
: MutableInteractionSource = remember { MutableInteractionSource() }
, elevation
: ButtonElevation = ButtonDefaults.elevation()
, shape
: Shape = AndromedaTheme.shapes.small
, border
: BorderStroke? = null
, contentPadding
: PaddingValues = ButtonDefaults.ContentPadding
, content
: @Composable RowScope.() -> Unit)