CardHeader

fun CardHeader(modifier: Modifier = Modifier, title: CharSequence, inlineContentFactory: InlineContentFactory = { emptyMap() }, titleColor: Color = AppTheme.colors.textColor.primary, titleMaxLines: Int = 1, showBackButton: Boolean, showCloseButton: Boolean, showDragControl: Boolean, showDivider: Boolean, onBackClick: () -> Unit = {}, onCloseClick: () -> Unit = {}, buttonColor: Color = AppTheme.colors.backgroundColors.secondary, trailingContent: @Composable RowScope.() -> Unit = {}, bottomContent: @Composable ColumnScope.() -> Unit = {})