fun Surface(modifier
: Modifier = Modifier
, shape
: Shape = RectangleShape
, color
: Color = AndromedaTheme.colors.primaryColors.background
, contentColor
: Color = contentColorFor(color)
, border
: BorderStroke? = null
, elevation
: Dp = 0.dp
, content
: @Composable () -> Unit) fun Surface(onClick
: () -> Unit, modifier
: Modifier = Modifier
, shape
: Shape = RectangleShape
, color
: Color = AndromedaTheme.colors.primaryColors.background
, contentColor
: Color = contentColorFor(color)
, border
: BorderStroke? = null
, elevation
: Dp = 0.dp
, interactionSource
: MutableInteractionSource = remember { MutableInteractionSource() }
, indication
: Indication? = LocalIndication.current
, enabled
: Boolean = true, onClickLabel
: String? = null
, role
: Role? = null
, content
: @Composable () -> Unit)