PreferencesHintCard

fun PreferencesHintCard(title: String = "Title ".repeat(2), description: String? = "Description text ".repeat(3), style: TextStyle = MaterialTheme.typography.titleLarge, icon: ImageVector? = Icons.Outlined.Translate, isDarkTheme: Boolean = false, backgroundColor: Color = MaterialTheme.colorScheme.run { if (isDarkTheme) onPrimaryContainer else secondaryContainer }, contentColor: Color = MaterialTheme.colorScheme.run { if (isDarkTheme) surface else onSecondaryContainer }, onClick: () -> Unit = {})