ExpandableCard

fun ExpandableCard(    modifier: Modifier = Modifier,     title: String,     tint: Color = Color.White,     contentColor: Color = Color.White,     containerColor: Color = Color.DarkGray,     style: TextStyle = LocalTextStyle.current,     showArrow: Boolean = true,     content: @Composable () -> Unit,     onCardArrowClick: () -> Unit,     expanded: Boolean)